Method Summary |
|
public void | addPanel(JPanel panel) Adds the specified panel to the end of the model. |
public int | getIndexOf(JPanel panel) Returns the index of the specified panel in this model. |
public JPanel | getNextPanel() Returns the next panel in the wizard and increments the
selected index. |
public JPanel | getPanelAt(int index) Returns the panel at the specified index. |
public int | getPanelCount() Returns the number of panel components in this model. |
public List<JPanel> | getPanels() Returns a list of panels making up this model. |
public JPanel | getPreviousPanel() Returns the previous panel in the wizard and decrements the
selected index. |
public int | getSelectedIndex() Returns the current index in the model. |
public String | getStep(int index) Returns the step text at the specified index. |
public String[] | getSteps() Returns the descriptive values for the wizard steps. |
public String | getTitle(int index) Returns the title text at the specified index. |
public String[] | getTitles() Returns the titles for each panel. |
public boolean | hasNext() Returns whether there is a valid panel to be selected next. |
public boolean | hasPrevious() Returns whether there is a valid panel to be selected previous. |
public boolean | next() Increments the current index. |
public boolean | previous() Decrements the current index. |
public void | setPanels(List<JPanel> panels) Sets the list of panels making up this model. |