Class DefaultFinishStep

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible, org.pietschy.wizard.WizardStep, PluginWizardStepListener

public class DefaultFinishStep extends PluginWizardStep
This is just a simple step that displays a set of messages. This is intended to be primarily used as the last step in a wizard, presenting some sort of "this wizard has finished" information.

This step is always in a "completed" state, meaning in its construction it does setComplete(true).

Author:
Vos
See Also:
  • Constructor Details

    • DefaultFinishStep

      public DefaultFinishStep(String title, String caption, String labelText)
      Constructs this step with the specified text to show as its title, in its caption bar, and optionally in a label centered in its panel. If the label text is null then no label will be added.
      Parameters:
      title - the title of the step
      caption - the caption on the step
      labelText - text for an optional label in the step
    • DefaultFinishStep

      public DefaultFinishStep(String title, String caption)
      This is the same as new DefaultFinishStep(title, caption, null).
      Parameters:
      title - the title of the step
      caption - the step's caption and label text
  • Method Details