JClass DesktopViews 6.3.0 API
Documentation

com.klg.jclass.swing
Interface JCWizardListener

All Superinterfaces:
EventListener

public interface JCWizardListener
extends EventListener

The listener interface for those interested in receiving Wizard events.


Method Summary
 void canceled(com.klg.jclass.swing.JCWizardEvent e)
          Invoked if the Cancel action is triggered.
 void finished(com.klg.jclass.swing.JCWizardEvent e)
          Invoked if a "finish" action is triggered.
 void help(com.klg.jclass.swing.JCWizardEvent e)
          Invoked if the Help action is triggered.
 void nextBegin(com.klg.jclass.swing.JCWizardEvent e)
          Invoked before advancing to the next page.
 void nextComplete(com.klg.jclass.swing.JCWizardEvent e)
          Invoked after advancing to the next page.
 void previousBegin(com.klg.jclass.swing.JCWizardEvent e)
          Invoked before advancing to the previous page.
 void previousComplete(com.klg.jclass.swing.JCWizardEvent e)
          Invoked after advancing to the previous page.
 

Method Detail

nextBegin

public void nextBegin(com.klg.jclass.swing.JCWizardEvent e)
Invoked before advancing to the next page. Calling e.setAllowChange(false) will prevent the next page from being advanced too. Check the e.isLastPage() to see if you are on the last page.


nextComplete

public void nextComplete(com.klg.jclass.swing.JCWizardEvent e)
Invoked after advancing to the next page.


previousBegin

public void previousBegin(com.klg.jclass.swing.JCWizardEvent e)
Invoked before advancing to the previous page. Calling e.setAllowChange(false) will prevent the previous page from being advanced too.


previousComplete

public void previousComplete(com.klg.jclass.swing.JCWizardEvent e)
Invoked after advancing to the previous page.


finished

public void finished(com.klg.jclass.swing.JCWizardEvent e)
Invoked if a "finish" action is triggered.


canceled

public void canceled(com.klg.jclass.swing.JCWizardEvent e)
Invoked if the Cancel action is triggered.


help

public void help(com.klg.jclass.swing.JCWizardEvent e)
Invoked if the Help action is triggered.


Copyright © 2004 Quest Software Inc..
All rights reserved.