Package org.neotropic.util.visual.wizard
Class Wizard.WizardEvent
- java.lang.Object
-
- org.neotropic.util.visual.wizard.Wizard.WizardEvent
-
-
Field Summary
Fields Modifier and Type Field Description static int
TYPE_CANCEL
The user hit "Cancel"static int
TYPE_FINAL_STEP
When the wizard ends and the user hits Finishstatic int
TYPE_NEXT_STEP
When passing from one step to the nextstatic int
TYPE_STEP_REJECTED
If passing from one step to the next is rejected by the validate() method
-
Constructor Summary
Constructors Constructor Description WizardEvent(int type, Properties information)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Properties
getInformation()
int
getType()
-
-
-
Field Detail
-
TYPE_NEXT_STEP
public static final int TYPE_NEXT_STEP
When passing from one step to the next- See Also:
- Constant Field Values
-
TYPE_FINAL_STEP
public static final int TYPE_FINAL_STEP
When the wizard ends and the user hits Finish- See Also:
- Constant Field Values
-
TYPE_STEP_REJECTED
public static final int TYPE_STEP_REJECTED
If passing from one step to the next is rejected by the validate() method- See Also:
- Constant Field Values
-
TYPE_CANCEL
public static final int TYPE_CANCEL
The user hit "Cancel"- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WizardEvent
public WizardEvent(int type, Properties information)
-
-
Method Detail
-
getType
public int getType()
-
getInformation
public Properties getInformation()
-
-