portal.comp.wizard
Interface WizardPage

All Superinterfaces:
Model, java.io.Serializable

public interface WizardPage
extends Model

Interface for a wizard page.

Author:
Bavo De Ridder

Method Summary
 void afterHidePage()
          Callback from the wizard.
 void beforeShowPage()
          Callback from the wizard.
 Component getComponent()
           
 java.lang.String getPageTitle()
           
 

Method Detail

getComponent

public Component getComponent()
Returns:
Component that renders this page

getPageTitle

public java.lang.String getPageTitle()
Returns:
The title of this wizard page

beforeShowPage

public void beforeShowPage()
Callback from the wizard. Gives the page a chance to perform certain actions before the page is actually rendered.


afterHidePage

public void afterHidePage()
Callback from the wizard. Gives the page a chance to perform certain actions after the page is hidden and will therefore not be rendered.