lisken.uitoolbox
Interface WizardAwareComponent

All Known Implementing Classes:
BoundaryHCgenPanel, CGFPanel, CombinedGeneratorPanel, DiskTriangulationsPanel, EulerianTriangulationsPanel, ExternalPanel, FormulaHCgenPanel, FourRegularPlaneGraphsPanel, FullgenPanel, GeneralPlaneGraphsPanel, GeneralQuadrangulationsPanel, GeneralTriangulationsPanel, GeneratorPanel, HCgenPanel, HexagonsHCgenPanel, NanoConesPanel, PlaneTriangulationsPanel, QuadrangulationsPanel, QuadRestrictPanel, ThreeRegularPlaneGraphsPanel, TriangulationsPanel, TubesConesPanel, TubetypePanel

public interface WizardAwareComponent

Interface to identify components that are aware of the wizard they are used in. This allows the WizardStage to pass in references to some of its buttons.


Method Summary
 void setCancelButton(javax.swing.JButton cancelButton)
          Makes the component aware of the cancel button.
 void setExitButton(javax.swing.JButton exitButton)
          Makes the component aware of the exit button.
 void setFinishButton(javax.swing.JButton finishButton)
          Makes the component aware of the finish button.
 void setNextButton(javax.swing.JButton nextButton)
          Makes the component aware of the next button.
 void setPreviousButton(javax.swing.JButton previousButton)
          Makes the component aware of the previous button.
 

Method Detail

setPreviousButton

void setPreviousButton(javax.swing.JButton previousButton)
Makes the component aware of the previous button.

Parameters:
previousButton - The previous button of this WizardStage

setNextButton

void setNextButton(javax.swing.JButton nextButton)
Makes the component aware of the next button.

Parameters:
nextButton - The next button of this WizardStage

setFinishButton

void setFinishButton(javax.swing.JButton finishButton)
Makes the component aware of the finish button.

Parameters:
finishButton - The finish button of this WizardStage

setCancelButton

void setCancelButton(javax.swing.JButton cancelButton)
Makes the component aware of the cancel button.

Parameters:
cancelButton - The cancel button of this WizardStage

setExitButton

void setExitButton(javax.swing.JButton exitButton)
Makes the component aware of the exit button.

Parameters:
exitButton - The exit button of this WizardStage