com.microstrategy.web.app.beans.WizardStepBean |
This application bean represents a single step on a wizard represented by
a WizardBean
instance.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract String |
getBodyMessage()
The body message is a String that can be used by a
Transform . | ||||||||||
abstract int |
getExecutionEventID()
Returns the event to be triggered by the client when the wizars is closed
| ||||||||||
abstract int |
getPosition()
Returns step position it represents.
| ||||||||||
abstract int |
getPreviousEventID()
Returns the event to be triggered by the client when the Previous button is clicked.
| ||||||||||
abstract String |
getPromptEvent()
Returns the event to be triggered by the client when the status has been changed to WaitingForUser Input
| ||||||||||
abstract WebComponent |
getTargetBean()
Returns target bean available to all steps in Wizard.
| ||||||||||
abstract String |
getValidationErrorMessage()
Return generic error message text.
| ||||||||||
abstract int |
getXMLStatus()
Indicates which XML bean request status this step can be executed
| ||||||||||
abstract boolean |
isCompleted()
Informs whether this step has been completed or not.
| ||||||||||
abstract boolean |
isFinal()
Indicates the step is final and no more steps will be displayed by the wizard.
| ||||||||||
abstract boolean |
isRequired()
Informs whether this step is required to be completed.
| ||||||||||
abstract boolean |
renderOnAnyStatus()
Checks whether to render the step regardless of the status of the target bean.
| ||||||||||
abstract void |
setBodyMessage(String value)
Sets the the step's body message.
| ||||||||||
abstract void |
setCompleted(boolean value)
Specifies completion for this step.
| ||||||||||
abstract void |
setExecutionEventID(int value)
Sets the event to be triggered by the client when the wizars is closed
| ||||||||||
abstract void |
setFinal(boolean value)
Specifies whether given step is final.
| ||||||||||
abstract void |
setIsRequired(boolean value)
Specifies whether this step is required to proceed through.
| ||||||||||
abstract void |
setPosition(int position)
Sets step position it represents.
| ||||||||||
abstract void |
setPreviousEventID(int value)
Sets the event to be triggered by the client when the Previous button is cliked.
| ||||||||||
abstract void |
setPromptEvent(String value)
Sets the event to be triggered by the client when the status has been changed to WaitingForUser Input
| ||||||||||
abstract void |
setRenderOnAnyStatus(boolean value)
Specify the wizard to render the step regardless of the status of the target bean.
| ||||||||||
abstract void |
setTargetBean(WebComponent targetBean)
Assigns a target bean to be manipulate by the step.
| ||||||||||
abstract void |
setXMLStatus(int value)
Specifies in which XML bean request status this step can be executed
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
The body message is a String that can be used by a Transform
. It's a piece of text
that can be placed anywhere on the step's body.
Returns the event to be triggered by the client when the wizars is closed
Returns step position it represents.
Returns the event to be triggered by the client when the Previous button is clicked.
Returns the event to be triggered by the client when the status has been changed to WaitingForUser Input
Returns target bean available to all steps in Wizard.
Return generic error message text.
Indicates which XML bean request status this step can be executed
Informs whether this step has been completed or not.
Indicates the step is final and no more steps will be displayed by the wizard.
Informs whether this step is required to be completed.
Checks whether to render the step regardless of the status of the target bean.
Sets the the step's body message.
The body message is a String that can be used by a Transform
. It's a piece of text
that can be placed anywhere on the step's body.
value | the step's body message. |
---|
Specifies completion for this step.
value | boolean value true if completed. |
---|
Sets the event to be triggered by the client when the wizars is closed
value | an event id |
---|
Specifies whether given step is final.
value | boolean value, true if final. |
---|
Specifies whether this step is required to proceed through.
value | boolean indicating if it's required or not. |
---|
Sets step position it represents.
position | integer value indicating step position on the wizard |
---|
Sets the event to be triggered by the client when the Previous button is cliked.
value | an event id |
---|
Sets the event to be triggered by the client when the status has been changed to WaitingForUser Input
value | an event id |
---|
Specify the wizard to render the step regardless of the status of the target bean.
value | boolean value true if to be rendered. |
---|
Assigns a target bean to be manipulate by the step.
targetBean | bean instance. |
---|
Specifies in which XML bean request status this step can be executed
value | value obtained from EnumRequestStatus |
---|