The Source for Java Technology Collaboration


Transition Listener

Easy Wizard defines a listener interface, which allows to listen for step change event, and to prohibit step change if needed.


 public interface IWizardListener {

   public int STEP_REGULAR = 1;
   public int STEP_LAST = 2;

   boolean onTransition(int event);
 }

Tansition listener is usually implented in Wizard Manager code, that is in Struts or JSF plugin.

Topic EasyWizardListener . { Edit | Ref-By | Printable | Diffs r2 < r1 | More }
 XML java.net RSS

Revision r2 - 21 Jul 2005 - 21:50:00 - Main.michael_jouravlev
Parents: WebHome > EasyWizard > EasyWizardDocumentation