Uses of Class
adams.gui.wizard.AbstractWizardPage
-
Packages that use AbstractWizardPage Package Description adams.gui.wizard -
-
Uses of AbstractWizardPage in adams.gui.wizard
Classes in adams.gui.wizard with type parameters of type AbstractWizardPage Modifier and Type Interface Description interface
PageCheck<T extends AbstractWizardPage>
Interface for classes that check whether a page has been completed.interface
ProceedAction<C extends AbstractWizardPage,N extends AbstractWizardPage>
Interface for action classes that get called when a user proceeds to the next page.interface
ProceedAction<C extends AbstractWizardPage,N extends AbstractWizardPage>
Interface for action classes that get called when a user proceeds to the next page.Subclasses of AbstractWizardPage in adams.gui.wizard Modifier and Type Class Description class
AbstractDatabaseConnectionPage
Ancestor for pages that allow the user to enter database connection parameters.class
BranchSelectionPage
Page that lets the user select which sub-branch to follow by displaying the page names of its children as buttons.class
DatabaseConnectionPage
Handles an ADAMS database connection.class
FinalPage
Simple start/welcome page.class
GenericObjectEditorPage
Wizard page that use aGenericObjectEditor
for displaying the properties of an object (and allowing user to change the class).class
ListPage
Wizard page that use aBaseList
for displaying a list of values.class
ParameterPanelPage
Wizard page that use aPropertiesParameterPanel
for displaying the parameters.class
PropertySheetPanelPage
Wizard page that use aPropertySheetPanel
for displaying the properties of an object.class
SelectDirectoryPage
Wizard page that allows the user to select a directory.class
SelectFilePage
Wizard page that allows the user to select a file.class
SelectMultipleDirectoriesPage
Wizard page that allows the user to select multiple directories.class
SelectMultipleFilesPage
Wizard page that allows the user to select multiple files.class
StartPage
Simple start/welcome page.class
TextAreaPage
Wizard page that use aBaseTextArea
for entering free-form text.class
WekaPropertySheetPanelPage
Wizard page that use aPropertySheetPanel
for displaying the properties of an object.class
WekaSelectDatasetPage
Wizard page that allows the user to select a Weka dataset.class
WekaSelectMultipleDatasetsPage
Wizard page that allows the user to select multiple datasets.Fields in adams.gui.wizard declared as AbstractWizardPage Modifier and Type Field Description protected AbstractWizardPage
WizardPaneWithBranches. m_LastPageAdded
the last page added.protected AbstractWizardPage
WizardPaneWithBranches. m_SelectedPage
the currently selected page.Fields in adams.gui.wizard with type parameters of type AbstractWizardPage Modifier and Type Field Description protected Set<AbstractWizardPage>
WizardPaneWithBranches. m_FinalPages
the final pages.protected Map<String,AbstractWizardPage>
AbstractWizardPane. m_PageLookup
the pages lookup.Methods in adams.gui.wizard that return AbstractWizardPage Modifier and Type Method Description protected AbstractWizardPage[]
BranchSelectionPage. getChildPages()
Returns its child pages.AbstractWizardPage[]
WizardPaneWithBranches. getChildPages(AbstractWizardPage page)
Returns all the child pages for the specified page.AbstractWizardPage
WizardPane. getPageAt(int index)
Returns the specified page.abstract AbstractWizardPage
AbstractWizardPane. getSelectedPage()
Returns the currently active page.AbstractWizardPage
WizardPane. getSelectedPage()
Returns the currently active page.AbstractWizardPage
WizardPaneWithBranches. getSelectedPage()
Returns the currently active page.Methods in adams.gui.wizard with parameters of type AbstractWizardPage Modifier and Type Method Description void
AbstractWizardPane. addPage(AbstractWizardPage page)
Adds the page under the given name.void
WizardPane. addPage(AbstractWizardPage page)
Adds the page under the given name.void
WizardPaneWithBranches. addPage(AbstractWizardPage page)
Adds the page under the given name.void
WizardPaneWithBranches. addPage(AbstractWizardPage parent, AbstractWizardPage page)
Adds the page under the given name.boolean
DummyPageCheck. checkPage(AbstractWizardPage page)
Checks the page.protected DefaultMutableTreeNode
WizardPaneWithBranches. findNode(AbstractWizardPage page)
Finds the node associated with the specified page.AbstractWizardPage[]
WizardPaneWithBranches. getChildPages(AbstractWizardPage page)
Returns all the child pages for the specified page.void
WizardPaneWithBranches. markFinalPage(AbstractWizardPage page)
Marks the page as a final one (for the finish button to be displayed).void
DummyProceedAction. onProceed(AbstractWizardPage currPage, AbstractWizardPage nextPage)
Does nothing.void
WizardPaneWithBranches. removePage(AbstractWizardPage page)
Removes the page (and all its subsequent pages).void
WizardPaneWithBranches. setSelectedPage(AbstractWizardPage page)
Sets the specified page as active one.void
WizardPaneWithBranches. unmarkFinalPage(AbstractWizardPage page)
Unmarks the page as a final one (for the finish button to be displayed).
-