Class LineWizardPage
- java.lang.Object
-
- org.processmining.plugins.petrinet.configurable.ui.widgets.linewizard.LineWizardPage
-
- Direct Known Subclasses:
LineWizardAbstractPage,LineWizardStartPage
public abstract class LineWizardPage extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classLineWizardPage.LineWizardButtonHandler
-
Field Summary
Fields Modifier and Type Field Description protected javax.swing.JPanelpagePanel
-
Constructor Summary
Constructors Constructor Description LineWizardPage(javax.swing.JComponent root)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description javax.swing.JPanelgetPage()javax.swing.JComponentgetRoot()protected abstract voidinitialize()abstract voidonNextButtonPress()voidsetNextPage(LineWizardPage nextPage)protected voidsetWizardNextButton(javax.swing.JButton button)Define the "next" button of this wizard page.voidshowPage(boolean show)
-
-
-
Method Detail
-
setNextPage
public final void setNextPage(LineWizardPage nextPage)
-
initialize
protected abstract void initialize()
-
setWizardNextButton
protected final void setWizardNextButton(javax.swing.JButton button)
Define the "next" button of this wizard page. It will install a button handerl to show the next pagenextPageand execute additional operations as defined inonNextButtonPress(). This method must be called during initialization of the wizard page.
-
getPage
public final javax.swing.JPanel getPage()
-
showPage
public void showPage(boolean show)
-
onNextButtonPress
public abstract void onNextButtonPress()
-
getRoot
public javax.swing.JComponent getRoot()
-
-