| |
|
| java.lang.Object com.nexes.wizard.WizardModel
WizardModel | public class WizardModel (Code) | | The model for the Wizard component, which tracks the text, icons, and enabled state
of each of the buttons, as well as the current panel that is displayed. Note that
the model, in its current form, is not intended to be subclassed.
|
Constructor Summary | |
public | WizardModel() Default constructor. |
BACK_BUTTON_ENABLED_PROPERTY | final public static String BACK_BUTTON_ENABLED_PROPERTY(Code) | | Property identification String for the Back button's enabled state
|
BACK_BUTTON_ICON_PROPERTY | final public static String BACK_BUTTON_ICON_PROPERTY(Code) | | Property identification String for the Back button's icon
|
BACK_BUTTON_TEXT_PROPERTY | final public static String BACK_BUTTON_TEXT_PROPERTY(Code) | | Property identification String for the Back button's text
|
CANCEL_BUTTON_ENABLED_PROPERTY | final public static String CANCEL_BUTTON_ENABLED_PROPERTY(Code) | | Property identification String for the Cancel button's enabled state
|
CANCEL_BUTTON_ICON_PROPERTY | final public static String CANCEL_BUTTON_ICON_PROPERTY(Code) | | Property identification String for the Cancel button's icon
|
CANCEL_BUTTON_TEXT_PROPERTY | final public static String CANCEL_BUTTON_TEXT_PROPERTY(Code) | | Property identification String for the Cancel button's text
|
CURRENT_PANEL_DESCRIPTOR_PROPERTY | final public static String CURRENT_PANEL_DESCRIPTOR_PROPERTY(Code) | | Identification string for the current panel.
|
NEXT_FINISH_BUTTON_ENABLED_PROPERTY | final public static String NEXT_FINISH_BUTTON_ENABLED_PROPERTY(Code) | | Property identification String for the Next button's enabled state
|
NEXT_FINISH_BUTTON_ICON_PROPERTY | final public static String NEXT_FINISH_BUTTON_ICON_PROPERTY(Code) | | Property identification String for the Next button's icon
|
NEXT_FINISH_BUTTON_TEXT_PROPERTY | final public static String NEXT_FINISH_BUTTON_TEXT_PROPERTY(Code) | | Property identification String for the Next button's text
|
WizardModel | public WizardModel()(Code) | | Default constructor.
|
getCancelButtonIcon | Icon getCancelButtonIcon()(Code) | | |
getCurrentPanelDescriptor | WizardPanelDescriptor getCurrentPanelDescriptor()(Code) | | Returns the currently displayed WizardPanelDescriptor.
The currently displayed WizardPanelDescriptor |
getNextFinishButtonEnabled | Boolean getNextFinishButtonEnabled()(Code) | | |
getNextFinishButtonIcon | Icon getNextFinishButtonIcon()(Code) | | |
getNextFinishButtonText | Object getNextFinishButtonText()(Code) | | |
registerPanel | void registerPanel(Object id, WizardPanelDescriptor descriptor)(Code) | | Registers the WizardPanelDescriptor in the model using the Object-identifier specified.
Parameters: id - Object-based identifier Parameters: descriptor - WizardPanelDescriptor that describes the panel |
setBackButtonEnabled | void setBackButtonEnabled(Boolean newValue)(Code) | | |
setBackButtonIcon | void setBackButtonIcon(Icon newIcon)(Code) | | |
setBackButtonText | void setBackButtonText(Object newText)(Code) | | |
setCancelButtonEnabled | void setCancelButtonEnabled(Boolean newValue)(Code) | | |
setCancelButtonIcon | void setCancelButtonIcon(Icon newIcon)(Code) | | |
setCancelButtonText | void setCancelButtonText(Object newText)(Code) | | |
setCurrentPanel | boolean setCurrentPanel(Object id)(Code) | | Sets the current panel to that identified by the Object passed in.
Parameters: id - Object-based panel identifier boolean indicating success or failure |
setNextFinishButtonEnabled | void setNextFinishButtonEnabled(Boolean newValue)(Code) | | |
setNextFinishButtonIcon | public void setNextFinishButtonIcon(Icon newIcon)(Code) | | |
setNextFinishButtonText | void setNextFinishButtonText(Object newText)(Code) | | |
|
|
|