com.anthonyeden.lib.gui
Interface WizardComponent

All Known Implementing Classes:
AbstractWizardComponent

public interface WizardComponent

Standard interface for components which will be used in a Wizard.

Author:
Anthony Eden

Method Summary
 java.awt.Component getComponent()
          Get the component.
 java.lang.String getDescription()
          Get a text description.
 java.awt.Component getInitialFocus()
          Get the component which gets the initial focus.
 java.lang.String getTitle()
          Get the title of the component.
 void hideWizardComponent()
          Invoked when this component is hidden.
 void setWizard(Wizard wizard)
          Set the wizard.
 void showWizardComponent()
          Invoked when this component is shown.
 

Method Detail

setWizard

public void setWizard(Wizard wizard)
Set the wizard.

Parameters:
wizard - The wizard

showWizardComponent

public void showWizardComponent()
Invoked when this component is shown.


hideWizardComponent

public void hideWizardComponent()
Invoked when this component is hidden.


getComponent

public java.awt.Component getComponent()
Get the component.

Returns:
The Component

getInitialFocus

public java.awt.Component getInitialFocus()
Get the component which gets the initial focus.

Returns:
The Component which receives initial focus

getDescription

public java.lang.String getDescription()
Get a text description.

Returns:
The description

getTitle

public java.lang.String getTitle()
Get the title of the component.

Returns:
The title


Copyright (c) 2000-2003 Anthony Eden. All Rights Reserved.