com.japisoft.framework.wizard
Interface WizardStepModel

All Known Implementing Classes:
DefaultWizardStepModel

public interface WizardStepModel

Model for storing the ste of wizard step

Author:
(c) 2003 JAPISOFT

Method Summary
 void addWizardStep(WizardStep step)
          Add a new wizard step
 WizardStep getWizardByName(java.lang.String name)
           
 WizardStep getWizardStep(int index)
           
 int getWizardStepCount()
           
 int getWizardStepIndex(WizardStep step)
           
 void insertWizardStep(int index, WizardStep step)
          Insert a wizard step
 void removeWizardStep(WizardStep step)
          Remove a wizard step
 

Method Detail

addWizardStep

public void addWizardStep(WizardStep step)
Add a new wizard step


insertWizardStep

public void insertWizardStep(int index,
                             WizardStep step)
Insert a wizard step


removeWizardStep

public void removeWizardStep(WizardStep step)
Remove a wizard step


getWizardStepIndex

public int getWizardStepIndex(WizardStep step)
Returns:
an index starting from 0 for this wizard step

getWizardByName

public WizardStep getWizardByName(java.lang.String name)
Returns:
a wizard by its name

getWizardStepCount

public int getWizardStepCount()
Returns:
the number of wizard step

getWizardStep

public WizardStep getWizardStep(int index)
Returns:
a wizard step at this index from 0 to the maximum size - 1