| java.lang.Object org.pietschy.wizard.AbstractWizardStep org.pietschy.wizard.pane.WizardPaneStep
WizardPaneStep | public class WizardPaneStep extends AbstractWizardStep (Code) | | A simple step that can be used to decouple the step from its user interface
so that the user interface can be created in a standalone class implementing
WizardPane .
Particularly useful if the user interface is built using a GUI tool.
For example:
StaticModel model = new StaticModel();
model.add(new (new WizardPaneStep(new FirstPane(), "Start", "Description"));
model.add(...);
...
Wizard wizard = new Wizard(model);
wizard.showInFrame("My Wizard");
author: Andrea Aimeorg.pietschy.wizard.PanelWizardStep |
WizardPaneStep | public WizardPaneStep(WizardPane pane, String name, String summary)(Code) | | Creates a new WizardPaneStep
Parameters: pane - -the graphical component. Should be a subclass of Component Parameters: name - Parameters: summary - |
WizardPaneStep | public WizardPaneStep(WizardPane pane, String name, String summary, Icon icon)(Code) | | Creates a new WizardPaneStep
Parameters: pane - -the graphical component. Should be a subclass of Component Parameters: name - Parameters: summary - Parameters: icon - |
|
|