Interface WizardPanel
-
- All Known Implementing Classes:
MapLayerWizardPanel
,OneSRSWizardPanel
,SRSWizardPanel
,URLWizardPanel
public interface WizardPanel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(InputChangedListener listener)
Tip: Delegate to an InputChangedFirer.void
enteredFromLeft(Map dataMap)
Called when the user presses Next on this panel's previous panelvoid
exitingToRight()
Called when the user presses Next on this panelString
getID()
String
getInstructions()
String
getNextID()
String
getTitle()
boolean
isInputValid()
void
remove(InputChangedListener listener)
-
-
-
Method Detail
-
enteredFromLeft
void enteredFromLeft(Map dataMap)
Called when the user presses Next on this panel's previous panel
-
exitingToRight
void exitingToRight() throws Exception
Called when the user presses Next on this panel- Throws:
Exception
-
add
void add(InputChangedListener listener)
Tip: Delegate to an InputChangedFirer.- Parameters:
listener
- a party to notify when the input changes (usually the WizardDialog, which needs to know when to update the enabled state of the buttons.
-
remove
void remove(InputChangedListener listener)
-
getTitle
String getTitle()
-
getID
String getID()
-
getInstructions
String getInstructions()
-
isInputValid
boolean isInputValid()
-
getNextID
String getNextID()
- Returns:
- null to turn the Next button into a Finish button
-
-