com.japisoft.framework.wizard
Interface StepView

All Known Implementing Classes:
BasicStepView

public interface StepView

Here an interface for each JWizard UI part. The start method is here for initializing the view component and the stop method for getting the view state.

Version:
1.0
Author:
(c) 2004 JAPISoft / http://www.japisoft.com

Method Summary
 javax.swing.JComponent getView()
           
 void start(WizardStepContext context)
          Called when the wizard step is started, so the final user can interact with the view provided by the getView method
 void stop(WizardStepContext context)
          Called before a new wizard step is started
 

Method Detail

start

public void start(WizardStepContext context)
Called when the wizard step is started, so the final user can interact with the view provided by the getView method

Parameters:
context - Information about the wizard step

stop

public void stop(WizardStepContext context)
Called before a new wizard step is started

Parameters:
context - Information about the wizard step

getView

public javax.swing.JComponent getView()
Returns:
the final Step view