gdl.wizard
Class WizardPanelProgressDescriptor

java.lang.Object
  extended by gdl.components.wizard.WizardPanelDescriptor
      extended by gdl.wizard.WizardPanelProgressDescriptor

public class WizardPanelProgressDescriptor
extends WizardPanelDescriptor

The descriptor class of the progress panel, specifying its "neybors" in the wizard, and an identifier.


Field Summary
static java.lang.String IDENTIFIER
           
 
Fields inherited from class gdl.components.wizard.WizardPanelDescriptor
FINISH
 
Constructor Summary
WizardPanelProgressDescriptor(WizardValueManager w, GraphExplorerGui gui)
           
 
Method Summary
 void aboutToHidePanel()
          Override this method to perform functionality just before the panel is to be hidden.
 void displayingPanel()
          Override this method to perform functionality when the panel itself is displayed.
 java.lang.Object getBackPanelDescriptor()
          Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Back button is pressed.
 java.lang.Object getNextPanelDescriptor()
          Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Next button is pressed.
 
Methods inherited from class gdl.components.wizard.WizardPanelDescriptor
aboutToDisplayPanel, getPanelComponent, getPanelDescriptorIdentifier, getWizard, getWizardModel, setPanelComponent, setPanelDescriptorIdentifier
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

IDENTIFIER

public static final java.lang.String IDENTIFIER
See Also:
Constant Field Values
Constructor Detail

WizardPanelProgressDescriptor

public WizardPanelProgressDescriptor(WizardValueManager w,
                                     GraphExplorerGui gui)
Method Detail

getNextPanelDescriptor

public java.lang.Object getNextPanelDescriptor()
Description copied from class: WizardPanelDescriptor
Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Next button is pressed. Note that this method is only called when the button is actually pressed, so that the panel can change the next panel's identifier dynamically at runtime if necessary. Return null if the button should be disabled. Return FinishIdentfier if the button text should change to 'Finish' and the dialog should end.

Overrides:
getNextPanelDescriptor in class WizardPanelDescriptor
Returns:
Object-based identifier.

getBackPanelDescriptor

public java.lang.Object getBackPanelDescriptor()
Description copied from class: WizardPanelDescriptor
Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Back button is pressed. Note that this method is only called when the button is actually pressed, so that the panel can change the previous panel's identifier dynamically at runtime if necessary. Return null if the button should be disabled.

Overrides:
getBackPanelDescriptor in class WizardPanelDescriptor
Returns:
Object-based identifier

displayingPanel

public void displayingPanel()
Description copied from class: WizardPanelDescriptor
Override this method to perform functionality when the panel itself is displayed.

Overrides:
displayingPanel in class WizardPanelDescriptor

aboutToHidePanel

public void aboutToHidePanel()
Description copied from class: WizardPanelDescriptor
Override this method to perform functionality just before the panel is to be hidden.

Overrides:
aboutToHidePanel in class WizardPanelDescriptor