com.sri.emo.wizard
Interface WizardMonitor

All Known Implementing Classes:
Log4jWizMonitor

public interface WizardMonitor

Monitor that often delegates to logging packages, but can be extended for more useful monitoring.

Author:
Michael Rimov

Method Summary
 void onBack(WizardPage src)
          Fired when back id is pressed on a wizard page.
 void onCancel(WizardPage src)
          Fired when the cancel button is pressed on a wizard page.
 void onEnterPage(WizardPage src)
          Debugging event for when a page is fired.
 void onError(WizardPage src, Throwable error)
          Fired when an error occurs while processing the wizard page.
 void onFinish(WizardPage src)
          Fired when the finish button is pressed on a wizard page.
 void onForward(WizardPage src)
          Fired when forward id pressed on a wizard page.
 

Method Detail

onEnterPage

void onEnterPage(WizardPage src)
Debugging event for when a page is fired.

Parameters:
src - the source of the event.

onForward

void onForward(WizardPage src)
Fired when forward id pressed on a wizard page.

Parameters:
src - the source page.

onBack

void onBack(WizardPage src)
Fired when back id is pressed on a wizard page.

Parameters:
src - the page source.

onFinish

void onFinish(WizardPage src)
Fired when the finish button is pressed on a wizard page.

Parameters:
src - the page source.

onCancel

void onCancel(WizardPage src)
Fired when the cancel button is pressed on a wizard page.

Parameters:
src - the source of the event.

onError

void onError(WizardPage src,
             Throwable error)
Fired when an error occurs while processing the wizard page.

Parameters:
src - the source of the event.
error - the Exeception.


Copyright © 2004-2006 Codeguild, Inc.. All Rights Reserved.