de.beamertool.admin.wizard.steps
Class Step2Descriptor

java.lang.Object
  extended by de.beamertool.admin.wizard.WizardPanelDescriptor
      extended by de.beamertool.admin.wizard.steps.Step2Descriptor

public class Step2Descriptor
extends WizardPanelDescriptor

Author:
ocm-zeeman

Field Summary
static String IDENTIFIER
           
 
Fields inherited from class de.beamertool.admin.wizard.WizardPanelDescriptor
FINISH
 
Constructor Summary
Step2Descriptor()
           
 
Method Summary
 void aboutToDisplayPanel()
          Override this method to provide functionality that will be performed just before the panel is to be displayed.
 void actionPerformed(ActionEvent e)
           
 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.
 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 de.beamertool.admin.wizard.WizardPanelDescriptor
aboutToHidePanel, displayingPanel, 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 String IDENTIFIER
See Also:
Constant Field Values
Constructor Detail

Step2Descriptor

public Step2Descriptor()
Method Detail

getNextPanelDescriptor

public 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 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

aboutToDisplayPanel

public void aboutToDisplayPanel()
Description copied from class: WizardPanelDescriptor
Override this method to provide functionality that will be performed just before the panel is to be displayed.

Overrides:
aboutToDisplayPanel in class WizardPanelDescriptor

actionPerformed

public void actionPerformed(ActionEvent e)