A B C D E F G H I L M N O P R S T U V W _

A

AbstractPathVisitor - class org.pietschy.wizard.models.AbstractPathVisitor.
 
AbstractPathVisitor() - Constructor for class org.pietschy.wizard.models.AbstractPathVisitor
 
AbstractWizardModel - class org.pietschy.wizard.AbstractWizardModel.
This class provides a base for implementors of WizardModel.
AbstractWizardModel() - Constructor for class org.pietschy.wizard.AbstractWizardModel
 
AbstractWizardStep - class org.pietschy.wizard.AbstractWizardStep.
This is the base class for all non panel related wizard steps.
AbstractWizardStep(String, String) - Constructor for class org.pietschy.wizard.AbstractWizardStep
Creates a new step with the specified name and summary.
AbstractWizardStep(String, String, Icon) - Constructor for class org.pietschy.wizard.AbstractWizardStep
Creates a new step with the specified name and summary.
abortBusy() - Method in class org.pietschy.wizard.AbstractWizardStep
Called by the wizard if the user presses cancel while the step is in a busy state.
abortBusy() - Method in class org.pietschy.wizard.PanelWizardStep
Called by the wizard if the user presses cancel while the step is in a busy state.
abortBusy() - Method in interface org.pietschy.wizard.WizardStep
Called by the wizard if the user presses cancel while the step is in a busy state.
acceptVisitor(PathVisitor) - Method in class org.pietschy.wizard.models.BranchingPath
 
acceptVisitor(PathVisitor) - Method in class org.pietschy.wizard.models.Path
 
acceptVisitor(PathVisitor) - Method in class org.pietschy.wizard.models.SimplePath
 
actionPerformed(ActionEvent) - Method in class org.pietschy.wizard.WizardAction
 
activateHelp(JComponent, WizardModel) - Method in interface org.pietschy.wizard.HelpBroker
Activated when the user presses help.
add(WizardStep) - Method in class org.pietschy.wizard.models.DynamicModel
Adds the next step to the wizard.
add(WizardStep, Condition) - Method in class org.pietschy.wizard.models.DynamicModel
Adds an optional step to the model.
add(WizardStep) - Method in class org.pietschy.wizard.models.StaticModel
Adds a step to the end of the wizard.
addBranch(Path, Condition) - Method in class org.pietschy.wizard.models.BranchingPath
Adds a possible branch from this path.
addCompleteListener(WizardStep) - Method in class org.pietschy.wizard.AbstractWizardModel
Adds a listener to the "complete" property of the WizardStep.
addPropertyChangeListener(PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardModel
Adds a PropertyChangeListener to this model.
addPropertyChangeListener(String, PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardModel
Adds a PropertyChangeListener to this model.
addPropertyChangeListener(PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardStep
 
addPropertyChangeListener(String, PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardStep
 
addPropertyChangeListener(PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardModel
Adds a PropertyChangeListener to this model.
addPropertyChangeListener(String, PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardModel
Adds a PropertyChangeListener to this model.
addPropertyChangeListener(PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardStep
 
addPropertyChangeListener(String, PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardStep
 
addStep(WizardStep) - Method in class org.pietschy.wizard.models.Path
Adds a wizard step to this path.
addWizardListener(WizardListener) - Method in class org.pietschy.wizard.Wizard
Adds a WizardListener to this wizard.
allStepsComplete() - Method in class org.pietschy.wizard.models.DynamicModel
Returns true if all included steps in the wizard return true from WizardStep.isComplete().
allStepsComplete() - Method in class org.pietschy.wizard.models.MultiPathModel
Returns true if all the steps in the wizard return true from WizardStep.isComplete().
allStepsComplete() - Method in class org.pietschy.wizard.models.StaticModel
Returns true if all the steps in the wizard return true from WizardStep.isComplete().
applyState() - Method in class org.pietschy.wizard.PanelWizardStep
This method is called whenever the user presses next while this step is active.
applyState() - Method in interface org.pietschy.wizard.WizardStep
This method is called whenever the user presses next while this step is active.
applyState() - Method in interface org.pietschy.wizard.pane.WizardPane
Deprecated. This method is called whenever the user presses next while this step is active.
applyState() - Method in class org.pietschy.wizard.pane.WizardPaneStep
Deprecated.  

B

BORDER_WIDTH - Static variable in class org.pietschy.wizard.Wizard
 
BranchingPath - class org.pietschy.wizard.models.BranchingPath.
BranchingPaths represent a sequence of WizardSteps that has multiple choices for the next path to traverse.
BranchingPath() - Constructor for class org.pietschy.wizard.models.BranchingPath
Creates a new empth BranchingPath.
BranchingPath(WizardStep) - Constructor for class org.pietschy.wizard.models.BranchingPath
Creates a new BranchingPath that is initialized with the specified step.
ButtonBar - class org.pietschy.wizard.ButtonBar.
The component that holds the wizards buttons.
ButtonBar(Wizard) - Constructor for class org.pietschy.wizard.ButtonBar
 
bind(Wizard, Window) - Static method in class org.pietschy.wizard.WizardFrameCloser
Creates a new closer that monitors the specified wizard and closes the parent frame.

C

Condition - interface org.pietschy.wizard.models.Condition.
An interface that is used by DynamicModel and MultiPathModel to determine if a wizard should display a particular step or group of steps.
cancel() - Method in class org.pietschy.wizard.Wizard
Cancels this wizard.
close() - Method in class org.pietschy.wizard.Wizard
Closes this wizard.
closeWindow() - Method in class org.pietschy.wizard.WizardFrameCloser
 
confirmAbort() - Method in class org.pietschy.wizard.Wizard
This method is called when the user cancels the wizard while the #activeStep is busy.
contains(WizardStep) - Method in class org.pietschy.wizard.models.Path
 
createButtonBar() - Method in class org.pietschy.wizard.Wizard
Called by the constructor to create the button bar.
createTitleComponent() - Method in class org.pietschy.wizard.Wizard
Called by the constructor to create the wizards title component.

D

DefaultTitleComponent - class org.pietschy.wizard.DefaultTitleComponent.
This class displays the details of the current WizardStep.
DefaultTitleComponent(Wizard) - Constructor for class org.pietschy.wizard.DefaultTitleComponent
 
DynamicModel - class org.pietschy.wizard.models.DynamicModel.
The DynamicModel is very similar to the static model, except that steps can be dynamically removed from the wizard flow.
DynamicModel() - Constructor for class org.pietschy.wizard.models.DynamicModel
Creates a new DynamicModel.
doAction(ActionEvent) - Method in class org.pietschy.wizard.WizardAction
 

E

EXIT_ON_CLOSE - Static variable in class org.pietschy.wizard.Wizard
When specified as the defaultExitMode, this causes the wizard to continue displaying the final step after finished has been pressed.
EXIT_ON_FINISH - Static variable in class org.pietschy.wizard.Wizard
When specified as the defaultExitMode, this causes the wizard to exit immediately once finish is pressed and WizardStep.applyState() has been invoked.
enter(Path) - Method in class org.pietschy.wizard.models.AbstractPathVisitor
 
equalizeButtonWidths(JButton, JButton, JButton, JButton, JButton, JButton, JButton) - Method in class org.pietschy.wizard.ButtonBar
Call prior to ButtonBar.layoutButtons(javax.swing.JButton, javax.swing.JButton, javax.swing.JButton, javax.swing.JButton, javax.swing.JButton, javax.swing.JButton, javax.swing.JButton) to make all the buttons the same width.
evaluate(WizardModel) - Method in interface org.pietschy.wizard.models.Condition
Called to determine when the path being added using BranchingPath.addBranch(org.pietschy.wizard.models.Path, org.pietschy.wizard.models.Condition) should be traversed.

F

firstStep() - Method in class org.pietschy.wizard.models.Path
 
formatActive(JLabel) - Method in class org.pietschy.wizard.models.StaticModelOverview
 
formatInactive(JLabel) - Method in class org.pietschy.wizard.models.StaticModelOverview
 

G

getActiveStep() - Method in class org.pietschy.wizard.AbstractWizardModel
Gets the current active step the wizard should display.
getActiveStep() - Method in class org.pietschy.wizard.WizardAction
 
getActiveStep() - Method in interface org.pietschy.wizard.WizardModel
Gets the current active step the wizard should display.
getCancelAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the cancel button.
getCloseAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the close button.
getDefaultExitMode() - Method in class org.pietschy.wizard.Wizard
Gets the exit mode of the wizard, being either Wizard.EXIT_ON_FINISH or Wizard.EXIT_ON_CLOSE
getFinishAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the showCloseButton button.
getFirstPath() - Method in class org.pietschy.wizard.models.MultiPathModel
 
getHelpAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the close button.
getHelpBroker() - Method in class org.pietschy.wizard.Wizard
 
getIcon() - Method in class org.pietschy.wizard.AbstractWizardStep
Gets the Icon that represents this step.
getIcon() - Method in class org.pietschy.wizard.PanelWizardStep
Gets the Icon that represents this step.
getIcon() - Method in interface org.pietschy.wizard.WizardStep
Gets the Icon that represents this step.
getLastAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the last button.
getLastPath() - Method in class org.pietschy.wizard.models.MultiPathModel
 
getMnemonic(String) - Static method in class org.pietschy.wizard.I18n
 
getModel() - Method in class org.pietschy.wizard.Wizard
Gets the models this wizard is using.
getModel() - Method in class org.pietschy.wizard.WizardAction
 
getName() - Method in class org.pietschy.wizard.AbstractWizardStep
Gets the name of this step.
getName() - Method in interface org.pietschy.wizard.WizardStep
Gets the name of this step.
getNextAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the next button.
getNextPath(MultiPathModel) - Method in class org.pietschy.wizard.models.BranchingPath
Gets the path to traverse after this path has exhausted all its steps.
getNextPath(MultiPathModel) - Method in class org.pietschy.wizard.models.Path
Gets the path that will follow this one.
getNextPath(MultiPathModel) - Method in class org.pietschy.wizard.models.SimplePath
 
getNextPath() - Method in class org.pietschy.wizard.models.SimplePath
 
getObject(String) - Static method in class org.pietschy.wizard.I18n
 
getOverviewComponent() - Method in interface org.pietschy.wizard.OverviewProvider
Called to get a component that provides an overview of the wizard.
getOverviewComponent() - Method in class org.pietschy.wizard.models.StaticModel
Returns an JComponent that will serve as an overview for this wizard.
getPage() - Method in class org.pietschy.wizard.HTMLPane
 
getPathForStep(WizardStep) - Method in class org.pietschy.wizard.models.MultiPathModel
 
getPreferredSize() - Method in interface org.pietschy.wizard.WizardStep
This method must return the maximum preferred size of this wizard step.
getPreferredSize() - Method in class org.pietschy.wizard.pane.WizardPaneStep
Deprecated.  
getPreviousAction() - Method in class org.pietschy.wizard.Wizard
Returns the action that is bound to the previous button.
getSteps() - Method in class org.pietschy.wizard.models.Path
 
getString(String) - Static method in class org.pietschy.wizard.I18n
 
getStringArray(String) - Static method in class org.pietschy.wizard.I18n
 
getSummary() - Method in class org.pietschy.wizard.AbstractWizardStep
Gets the summary of this step.
getSummary() - Method in class org.pietschy.wizard.PanelWizardStep
Gets the summary of this step.
getSummary() - Method in interface org.pietschy.wizard.WizardStep
Gets the summary of this step.
getTitleComponent() - Method in class org.pietschy.wizard.Wizard
Gets the component being used to render the wizards title.
getView() - Method in class org.pietschy.wizard.AbstractWizardStep
Returns the current view this step is displaying.
getView() - Method in class org.pietschy.wizard.PanelWizardStep
Returns 'this'.
getView() - Method in interface org.pietschy.wizard.WizardStep
Returns the current view this step is displaying.
getWizard() - Method in class org.pietschy.wizard.WizardAction
 
getWizard() - Method in class org.pietschy.wizard.WizardEvent
Returns the Wizard that fired the event.

H

HTMLPane - class org.pietschy.wizard.HTMLPane.
This class displays HTML text using an instance of JEditorPane but allows the font, foreground and background colors to be easily changed.
HTMLPane() - Constructor for class org.pietschy.wizard.HTMLPane
Creates a new JEditorPane.
HTMLPane(boolean) - Constructor for class org.pietschy.wizard.HTMLPane
Creates a new HTMLPane.
HelpBroker - interface org.pietschy.wizard.HelpBroker.
An interface for handling wizard help requests.
handleInvalideStateException(InvalidStateException) - Method in class org.pietschy.wizard.WizardAction
 
helpButtonGap - Variable in class org.pietschy.wizard.ButtonBar
 

I

I18n - class org.pietschy.wizard.I18n.
Internationalization Helper.
I18n() - Constructor for class org.pietschy.wizard.I18n
 
InvalidStateException - exception org.pietschy.wizard.InvalidStateException.
This exception is thrown by WizardStep instances if the call to WizardStep.applyState() can't be fullfilled.
InvalidStateException() - Constructor for class org.pietschy.wizard.InvalidStateException
 
InvalidStateException(String) - Constructor for class org.pietschy.wizard.InvalidStateException
 
InvalidStateException(String, Throwable) - Constructor for class org.pietschy.wizard.InvalidStateException
 
InvalidStateException(String, boolean) - Constructor for class org.pietschy.wizard.InvalidStateException
 
InvalidStateException(String, Throwable, boolean) - Constructor for class org.pietschy.wizard.InvalidStateException
 
init(WizardModel) - Method in class org.pietschy.wizard.AbstractWizardStep
Called to initialize the step.
init(WizardModel) - Method in class org.pietschy.wizard.PanelWizardStep
Called to initialize the step.
init(WizardModel) - Method in interface org.pietschy.wizard.WizardStep
Called to initialize the step.
init(WizardStep, WizardModel) - Method in interface org.pietschy.wizard.pane.WizardPane
Deprecated. Called to initialize the step.
init(WizardModel) - Method in class org.pietschy.wizard.pane.WizardPaneStep
Deprecated.  
isAntiAlias() - Method in class org.pietschy.wizard.HTMLPane
 
isBusy() - Method in class org.pietschy.wizard.AbstractWizardStep
Checks if the current task is busy.
isBusy() - Method in class org.pietschy.wizard.PanelWizardStep
Checks if the current task is busy.
isBusy() - Method in interface org.pietschy.wizard.WizardStep
Checks if the current task is busy.
isComplete() - Method in class org.pietschy.wizard.AbstractWizardStep
Checks if this step is compete.
isComplete() - Method in class org.pietschy.wizard.PanelWizardStep
Checks if this step is compete.
isComplete() - Method in interface org.pietschy.wizard.WizardStep
Checks if this step is compete.
isFirstStep(WizardStep) - Method in class org.pietschy.wizard.models.Path
Checks if the specified step is the first step in the path.
isGradientBackground() - Method in class org.pietschy.wizard.DefaultTitleComponent
Checks if the title is using a gradient background.
isLastAvailable() - Method in class org.pietschy.wizard.AbstractWizardModel
Checks if the last button should be enabled.
isLastAvailable() - Method in interface org.pietschy.wizard.WizardModel
Checks if the last button should be enabled.
isLastStep(WizardStep) - Method in interface org.pietschy.wizard.WizardModel
Checks if the specified step is the last step in the wizard.
isLastStep(WizardStep) - Method in class org.pietschy.wizard.models.DynamicModel
 
isLastStep(WizardStep) - Method in class org.pietschy.wizard.models.MultiPathModel
 
isLastStep(WizardStep) - Method in class org.pietschy.wizard.models.Path
Checks if the specified step is the last step in the path.
isLastStep(WizardStep) - Method in class org.pietschy.wizard.models.StaticModel
 
isLastVisible() - Method in class org.pietschy.wizard.AbstractWizardModel
Checks if the last button should be displayed.
isLastVisible() - Method in interface org.pietschy.wizard.WizardModel
Checks if the last button should be displayed.
isNextAvailable() - Method in class org.pietschy.wizard.AbstractWizardModel
Checks if the next button should be enabled.
isNextAvailable() - Method in interface org.pietschy.wizard.WizardModel
Checks if the next button should be enabled.
isOverviewVisible() - Method in class org.pietschy.wizard.Wizard
Checks the visibily of the overview panel that is displayed on the wizards left panel.
isPreviousAvailable() - Method in class org.pietschy.wizard.AbstractWizardModel
Checks if the previous button should be enabled.
isPreviousAvailable() - Method in interface org.pietschy.wizard.WizardModel
Checks if the previous button should be enabled.
isShowUser() - Method in class org.pietschy.wizard.InvalidStateException
Checks if this exception should be presented to the user.

L

lastButtonGap - Variable in class org.pietschy.wizard.ButtonBar
 
lastStep() - Method in interface org.pietschy.wizard.WizardModel
Takes the model to the last step in the wizard and fires the appropriate property change events.
lastStep() - Method in class org.pietschy.wizard.models.DynamicModel
 
lastStep() - Method in class org.pietschy.wizard.models.MultiPathModel
 
lastStep() - Method in class org.pietschy.wizard.models.Path
 
lastStep() - Method in class org.pietschy.wizard.models.StaticModel
 
layoutButtons(JButton, JButton, JButton, JButton, JButton, JButton, JButton) - Method in class org.pietschy.wizard.ButtonBar
Called by the constructor to add the buttons to the button bar.

M

MultiPathModel - class org.pietschy.wizard.models.MultiPathModel.
MultiPathModels are built from a joined set of Paths that each contain one or more WizardSteps.
MultiPathModel(Path) - Constructor for class org.pietschy.wizard.models.MultiPathModel
Creates a new MultiPathModel.

N

nextStep() - Method in interface org.pietschy.wizard.WizardModel
Increments the model the the next step and fires the appropriate property change events.
nextStep() - Method in class org.pietschy.wizard.models.DynamicModel
 
nextStep() - Method in class org.pietschy.wizard.models.MultiPathModel
 
nextStep(WizardStep) - Method in class org.pietschy.wizard.models.Path
 
nextStep() - Method in class org.pietschy.wizard.models.StaticModel
 

O

OverviewProvider - interface org.pietschy.wizard.OverviewProvider.
An interface that marks a model as providing an overview component for the wizard.
org.pietschy.wizard - package org.pietschy.wizard
This package provides the basic classes required from creating and using Wizard instances.
org.pietschy.wizard.models - package org.pietschy.wizard.models
This package provides the basic implementations of WizardModel.
org.pietschy.wizard.pane - package org.pietschy.wizard.pane
 

P

PanelWizardStep - class org.pietschy.wizard.PanelWizardStep.
This is a base class for JPanel based wizard steps.
PanelWizardStep() - Constructor for class org.pietschy.wizard.PanelWizardStep
A default constructor make this class JavaBean compatible.
PanelWizardStep(String, String) - Constructor for class org.pietschy.wizard.PanelWizardStep
Creates a new step with the specified name and summary.
PanelWizardStep(String, String, Icon) - Constructor for class org.pietschy.wizard.PanelWizardStep
Creates a new step with the specified name and summary.
Path - class org.pietschy.wizard.models.Path.
Paths represent a sequence of WizardSteps.
Path() - Constructor for class org.pietschy.wizard.models.Path
 
PathVisitor - interface org.pietschy.wizard.models.PathVisitor.
 
paint(Graphics) - Method in class org.pietschy.wizard.HTMLPane
 
paintComponent(Graphics) - Method in class org.pietschy.wizard.DefaultTitleComponent
 
prepare() - Method in class org.pietschy.wizard.PanelWizardStep
Called to prepare this step to display.
prepare() - Method in interface org.pietschy.wizard.WizardStep
Called to prepare this step to display.
prepare() - Method in interface org.pietschy.wizard.pane.WizardPane
Deprecated. Called to prepare this step to display.
prepare() - Method in class org.pietschy.wizard.pane.WizardPaneStep
Deprecated.  
prepareGradient() - Method in class org.pietschy.wizard.DefaultTitleComponent
Prepares the background paint for the component.
previousStep() - Method in interface org.pietschy.wizard.WizardModel
Takes the model back to the previsou step and fires the appropriate property change events.
previousStep() - Method in class org.pietschy.wizard.models.DynamicModel
 
previousStep() - Method in class org.pietschy.wizard.models.MultiPathModel
 
previousStep(WizardStep) - Method in class org.pietschy.wizard.models.Path
 
previousStep() - Method in class org.pietschy.wizard.models.StaticModel
 
propertyChange(PropertyChangeEvent) - Method in class org.pietschy.wizard.WizardAction
 
propertyChange(PropertyChangeEvent) - Method in class org.pietschy.wizard.models.StaticModelOverview
 

R

RELATED_GAP - Static variable in class org.pietschy.wizard.ButtonBar
 
refreshModelState() - Method in class org.pietschy.wizard.AbstractWizardModel
This is an empty method that is intended for subclasses to override to update their various properties based on the active step.
refreshModelState() - Method in interface org.pietschy.wizard.WizardModel
Called to request the model to update it current state.
refreshModelState() - Method in class org.pietschy.wizard.models.DynamicModel
Forces the model to re-evaluate it's current state.
refreshModelState() - Method in class org.pietschy.wizard.models.MultiPathModel
 
refreshModelState() - Method in class org.pietschy.wizard.models.StaticModel
This method is invoked after the current step has been changed to update the state of the model.
removePropertyChangeListener(PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardModel
Removes a PropertyChangeListener from this model.
removePropertyChangeListener(String, PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardModel
Removes a PropertyChangeListener from this model.
removePropertyChangeListener(PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardStep
 
removePropertyChangeListener(String, PropertyChangeListener) - Method in class org.pietschy.wizard.AbstractWizardStep
 
removePropertyChangeListener(PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardModel
Removes a PropertyChangeListener from this model.
removePropertyChangeListener(String, PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardModel
Removes a PropertyChangeListener from this model.
removePropertyChangeListener(PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardStep
 
removePropertyChangeListener(String, PropertyChangeListener) - Method in interface org.pietschy.wizard.WizardStep
 
removeWizardListener(WizardListener) - Method in class org.pietschy.wizard.Wizard
Removes a WizardListener from this wizard.
reset() - Method in class org.pietschy.wizard.Wizard
Resets the wizard.
reset() - Method in interface org.pietschy.wizard.WizardModel
Takes the model back to the first step and fires the appropriate property change events.
reset() - Method in class org.pietschy.wizard.models.DynamicModel
 
reset() - Method in class org.pietschy.wizard.models.MultiPathModel
 
reset() - Method in class org.pietschy.wizard.models.StaticModel
Resest this model.

S

SimplePath - class org.pietschy.wizard.models.SimplePath.
A SimplePath represents a sequence of wizard steps whose next path is determined at compile time.
SimplePath() - Constructor for class org.pietschy.wizard.models.SimplePath
 
SimplePath(WizardStep) - Constructor for class org.pietschy.wizard.models.SimplePath
Creates a new SimplePath that is initialized with the specified step.
StaticModel - class org.pietschy.wizard.models.StaticModel.
This class provides the basis for a simple linear wizard model.
StaticModel() - Constructor for class org.pietschy.wizard.models.StaticModel
 
StaticModelOverview - class org.pietschy.wizard.models.StaticModelOverview.
This class provides an overview panel for instances of StaticModel.
StaticModelOverview(StaticModel) - Constructor for class org.pietschy.wizard.models.StaticModelOverview
 
setActiveStep(WizardStep) - Method in class org.pietschy.wizard.AbstractWizardModel
Provided for subclasses to change the current step in response to a call to WizardModel.nextStep() or its related methods.
setAntiAlias(boolean) - Method in class org.pietschy.wizard.HTMLPane
 
setBundle(ResourceBundle) - Static method in class org.pietschy.wizard.I18n
 
setBusy(boolean) - Method in class org.pietschy.wizard.AbstractWizardStep
Sets the busy state of this wizard step.
setBusy(boolean) - Method in class org.pietschy.wizard.PanelWizardStep
Sets the busy state of this wizard step.
setCancelAvailable(boolean) - Method in class org.pietschy.wizard.AbstractWizardModel
Configures if the cncel button should be enabled.
setComplete(boolean) - Method in class org.pietschy.wizard.AbstractWizardStep
Marks this step as compete.
setComplete(boolean) - Method in class org.pietschy.wizard.PanelWizardStep
Marks this step as compete.
setDefaultExitMode(int) - Method in class org.pietschy.wizard.Wizard
Set the time when the wizard exits.
setEditorKit(EditorKit) - Method in class org.pietschy.wizard.HTMLPane
 
setFadeColor(Color) - Method in class org.pietschy.wizard.DefaultTitleComponent
Sets the color the gradient will fade to.
setFont(Font) - Method in class org.pietschy.wizard.HTMLPane
 
setForeground(Color) - Method in class org.pietschy.wizard.HTMLPane
 
setGradientBackground(boolean) - Method in class org.pietschy.wizard.DefaultTitleComponent
Configures the title to use a gradient background.
setHelpBroker(HelpBroker) - Method in class org.pietschy.wizard.Wizard
 
setIcon(Icon) - Method in class org.pietschy.wizard.AbstractWizardStep
Sets the Icon that represents this step.
setIcon(Icon) - Method in class org.pietschy.wizard.PanelWizardStep
Sets the Icon that represents this step.
setLastAvailable(boolean) - Method in class org.pietschy.wizard.AbstractWizardModel
Configures if the last button should be enabled.
setLastVisible(boolean) - Method in class org.pietschy.wizard.AbstractWizardModel
Configures if the last button should be displayed.
setName(String) - Method in class org.pietschy.wizard.AbstractWizardStep
Sets the name of this step.
setNextAvailable(boolean) - Method in class org.pietschy.wizard.AbstractWizardModel
Configures if the next button should be enabled.
setNextPath(Path) - Method in class org.pietschy.wizard.models.SimplePath
 
setOverviewVisible(boolean) - Method in class org.pietschy.wizard.Wizard
Configures the visibily of the overview panel that is displayed on the wizards left panel.
setPage(URL) - Method in class org.pietschy.wizard.HTMLPane
 
setPreviousAvailable(boolean) - Method in class org.pietschy.wizard.AbstractWizardModel
Configures if the previous button should be enabled.
setShowUser(boolean) - Method in class org.pietschy.wizard.InvalidStateException
Configures if this exception should be presented to the user.
setSummary(String) - Method in class org.pietschy.wizard.AbstractWizardStep
Sets the summary of this step.
setSummary(String) - Method in class org.pietschy.wizard.PanelWizardStep
Sets this steps summary.
setView(Component) - Method in class org.pietschy.wizard.AbstractWizardStep
Sets the current view this step is displaying.
showCloseButton(boolean) - Method in class org.pietschy.wizard.ButtonBar
 
showCloseButton() - Method in class org.pietschy.wizard.Wizard
Marks this wizard as finished.
showInDialog(String, Component, boolean) - Method in class org.pietschy.wizard.Wizard
Displays the wizard in a new JDialog with the specified title.
showInFrame(String) - Method in class org.pietschy.wizard.Wizard
Displays the wizard in a new JFrame with the specified title.
showInFrame(String, Image) - Method in class org.pietschy.wizard.Wizard
Displays the wizard in a new JFrame with the specified title.
showInFrame(String, Component) - Method in class org.pietschy.wizard.Wizard
Displays the wizard in a new JFrame with the specified title.
showInFrame(String, Image, Component) - Method in class org.pietschy.wizard.Wizard
Displays the wizard in a new JFrame with the specified title.
stepIterator() - Method in interface org.pietschy.wizard.WizardModel
Returns an iterator over all the steps in the model.
stepIterator() - Method in class org.pietschy.wizard.models.DynamicModel
 
stepIterator() - Method in class org.pietschy.wizard.models.MultiPathModel
 
stepIterator() - Method in class org.pietschy.wizard.models.StaticModel
 

T

TRUE_CONDITION - Static variable in class org.pietschy.wizard.models.DynamicModel
An implementation of Condition that always returns true.

U

UNRELATED_GAP - Static variable in class org.pietschy.wizard.ButtonBar
 
updateState() - Method in class org.pietschy.wizard.WizardAction
 

V

visitBranches(PathVisitor) - Method in class org.pietschy.wizard.models.BranchingPath
 
visitNextPath(PathVisitor) - Method in class org.pietschy.wizard.models.SimplePath
 
visitPath(SimplePath) - Method in interface org.pietschy.wizard.models.PathVisitor
 
visitPath(BranchingPath) - Method in interface org.pietschy.wizard.models.PathVisitor
 

W

Wizard - class org.pietschy.wizard.Wizard.
The wizard class is the main entry point for creating wizards.
Wizard(WizardModel) - Constructor for class org.pietschy.wizard.Wizard
Creates a new Wizard that uses the specified WizardModel.
WizardAction - class org.pietschy.wizard.WizardAction.
Base class for all Wizard actions.
WizardAction(String, Wizard, Icon) - Constructor for class org.pietschy.wizard.WizardAction
 
WizardAction(String, Wizard) - Constructor for class org.pietschy.wizard.WizardAction
 
WizardAdapter - class org.pietschy.wizard.WizardAdapter.
This class provides an empty implementation of WizardListener.
WizardAdapter() - Constructor for class org.pietschy.wizard.WizardAdapter
 
WizardEvent - class org.pietschy.wizard.WizardEvent.
This event is fired when ever a Wizard is closed or cancelled.
WizardEvent(Wizard) - Constructor for class org.pietschy.wizard.WizardEvent
Constructs a new event for the specified Wizard.
WizardFrameCloser - class org.pietschy.wizard.WizardFrameCloser.
This class implements WizardListener and is used to hide and dispose frames when a wizard has been completed or canceled.
WizardListener - interface org.pietschy.wizard.WizardListener.
This interface allows other classes to be notified when this wizard is cancelled or closed.
WizardModel - interface org.pietschy.wizard.WizardModel.
This interface defines the Model for wizards.
WizardPane - interface org.pietschy.wizard.pane.WizardPane.
Deprecated. since 0.1.10. WizardStep is now an interface allowing implementation by any swing componenent. See PanelWizardStep.
WizardPaneStep - class org.pietschy.wizard.pane.WizardPaneStep.
Deprecated. since 0.1.10. WizardStep is now an interface allowing implementation by any swing componenent. See PanelWizardStep.
WizardPaneStep(WizardPane, String, String) - Constructor for class org.pietschy.wizard.pane.WizardPaneStep
Deprecated. Creates a new WizardPaneStep
WizardPaneStep(WizardPane, String, String, Icon) - Constructor for class org.pietschy.wizard.pane.WizardPaneStep
Deprecated. Creates a new WizardPaneStep
WizardStep - interface org.pietschy.wizard.WizardStep.
All changes to properties must fire property change events.
wasCanceled() - Method in class org.pietschy.wizard.Wizard
Checks if the wizard was canceled.
wizard - Variable in class org.pietschy.wizard.WizardAction
 
wizardCancelled(WizardEvent) - Method in class org.pietschy.wizard.WizardAdapter
Empty implementation of WizardListener.wizardCancelled(org.pietschy.wizard.WizardEvent)
wizardCancelled(WizardEvent) - Method in class org.pietschy.wizard.WizardFrameCloser
 
wizardCancelled(WizardEvent) - Method in interface org.pietschy.wizard.WizardListener
Called when the user cancels the wizard.
wizardClosed(WizardEvent) - Method in class org.pietschy.wizard.WizardAdapter
Empty implementation of WizardListener.wizardClosed(org.pietschy.wizard.WizardEvent)
wizardClosed(WizardEvent) - Method in class org.pietschy.wizard.WizardFrameCloser
 
wizardClosed(WizardEvent) - Method in interface org.pietschy.wizard.WizardListener
Called when the user closes the wizard.

_

_ID_ - Static variable in interface org.pietschy.wizard.WizardStep
 

A B C D E F G H I L M N O P R S T U V W _

Copyright © 2004 Andrew Pietsch.