org.jfree.ui
public abstract class WizardPanel extends JPanel
| Constructor Summary | |
|---|---|
| protected | WizardPanel(LayoutManager layout)
Creates a new panel.
|
| Method Summary | |
|---|---|
| abstract boolean | canFinish()
Returns true if it is possible to finish from this panel.
|
| abstract boolean | canRedisplayNextPanel()
Returns true if it is OK to redisplay the last version of the next panel, or false if a new
version is required.
|
| abstract WizardPanel | getNextPanel()
Returns the next panel in the sequence, given the current user input. |
| WizardDialog | getOwner()
Returns a reference to the dialog that owns the panel.
|
| Object | getResult()
Returns the result.
|
| abstract boolean | hasNextPanel()
Returns true if there is a next panel.
|
| abstract void | returnFromLaterStep()
This method is called when the dialog redisplays this panel as a result of the user clicking
the "Previous" button. |
| void | setOwner(WizardDialog owner)
Sets the reference to the dialog that owns the panel (this is called automatically by
the dialog when the panel is added to the dialog).
|
Parameters: layout the layout manager.
Returns: boolean.
Returns: boolean.
Returns: the next panel in the sequence.
Returns: the owner.
Returns: the result.
Returns: boolean.
Parameters: owner the owner.