|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface PromptOrder
Warning: This interface is no longer functional from the SAP BusinessObjects 4.0 release onwards.
PromptOrder interface defines a collection of prompts in the order in which they will be presented to the user.
By default, all prompts will be presented in the creation order, but that can be modified using this class.
Note: The nested prompts doesnot support prompt order
| Method Summary | |
|---|---|
int |
getCount()
Returns the number of prompts. |
ConditionPrompt |
getItem(int index)
Returns the prompt at the given position. |
void |
move(int fromIndex,
int toIndex)
Moves a prompt from one position to another. |
| Method Detail |
|---|
int getCount()
ConditionPrompt getItem(int index)
index - the index of the prompt to return
java.lang.IndexOutOfBoundsException - when index is invalid
void move(int fromIndex,
int toIndex)
fromIndex - the index of the prompt to move (must be
(fromIndex >= 0) &&
(fromIndex < getCount()))toIndex - the index to move the prompt to (must be
(toIndex >= 0) &&
(toIndex < getCount()))
java.lang.IndexOutOfBoundsException - when either fromIndex or
toIndex is invalid
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||