Package net.sf.fmj.ui.wizard

FmjStudio: Swing wizard classes.

See:
          Description

Class Summary
Wizard Adapted Robert Eckstein's sample at http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/ This class implements a basic wizard dialog, where the programmer can insert one or more Components to act as panels.
WizardController Adapted Robert Eckstein's sample at http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/ This class is responsible for reacting to events generated by pushing any of the three buttons, 'Next', 'Previous', and 'Cancel.' Based on what button is pressed, the controller will update the model to show a new panel and reset the state of the buttons as necessary.
WizardModel Adapted Robert Eckstein's sample at http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/ The model for the Wizard component, which tracks the text, icons, and enabled state of each of the buttons, as well as the current panel that is displayed.
WizardPanelDescriptor Adapted Robert Eckstein's sample at http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/ A base descriptor class used to reference a Component panel for the Wizard, as well as provide general rules as to how the panel should behave.
 

Exception Summary
WizardPanelNotFoundException Adapted Robert Eckstein's sample at http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/
 

Package net.sf.fmj.ui.wizard Description

FmjStudio: Swing wizard classes. Adapted Robert Eckstein's sample at http://java.sun.com/developer/technicalArticles/GUI/swing/wizard/