Interface IWizardPage
-
- All Superinterfaces:
IComponentProvider
- All Known Implementing Classes:
AbstractWizardPage,ChooseOneOfManyWizardPage
public interface IWizardPage extends IComponentProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanfinishable()IBooleanDistributorgetBackEnabledModel()IObjectDistributor<DataState>getDataStateModel()javax.swing.IcongetIcon()java.lang.StringgetMessage()IObjectDistributor<java.lang.String>getMessageDistributor()IBooleanDistributorgetNextEnabledModel()java.lang.StringgetTitle()booleanisApplicable(IWizardPage currentPage)-
Methods inherited from interface net.anwiba.commons.swing.component.IComponentProvider
getComponent
-
-
-
-
Method Detail
-
getTitle
java.lang.String getTitle()
-
getMessage
java.lang.String getMessage()
-
getMessageDistributor
IObjectDistributor<java.lang.String> getMessageDistributor()
-
getNextEnabledModel
IBooleanDistributor getNextEnabledModel()
-
getBackEnabledModel
IBooleanDistributor getBackEnabledModel()
-
getDataStateModel
IObjectDistributor<DataState> getDataStateModel()
-
getIcon
javax.swing.Icon getIcon()
-
finishable
boolean finishable()
-
isApplicable
boolean isApplicable(IWizardPage currentPage)
-
-