Class AbstractWizard
- java.lang.Object
-
- org.uberfire.ext.widgets.core.client.wizards.AbstractWizard
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanisStartedprotected WizardViewview
-
Constructor Summary
Constructors Constructor Description AbstractWizard()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidcheckPagesState()voidclose()The Wizard has been closedvoidcomplete()The Wizard has been completedvoidonPageSelected(WizardPageSelectedEvent event)voidonStatusChange(WizardPageStatusChangeEvent event)voidpageSelected(int pageNumber)A page has been selected from the UIvoidsetup()voidstart()Start the Wizard-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.uberfire.ext.widgets.core.client.wizards.Wizard
getPages, getPageWidget, getPreferredHeight, getPreferredWidth, getTitle, isComplete
-
-
-
-
Field Detail
-
view
@Inject protected WizardView view
-
isStarted
protected boolean isStarted
-
-
Method Detail
-
setup
@PostConstruct public void setup()
-
onStatusChange
public void onStatusChange(@Observes WizardPageStatusChangeEvent event)
-
checkPagesState
protected void checkPagesState()
-
onPageSelected
public void onPageSelected(@Observes WizardPageSelectedEvent event)
-
start
public void start()
Description copied from interface:WizardStart the Wizard
-
pageSelected
public void pageSelected(int pageNumber)
Description copied from interface:WizardA page has been selected from the UI- Specified by:
pageSelectedin interfaceWizard
-
close
public void close()
Description copied from interface:WizardThe Wizard has been closed
-
-