com.sun.webui.jsf.event
Interface WizardEventListener

All Superinterfaces:
java.util.EventListener, javax.faces.event.FacesListener, javax.faces.component.StateHolder

public interface WizardEventListener
extends javax.faces.event.FacesListener, javax.faces.component.StateHolder

The WizardEventListener is an event listener defined on WizardStep and Wizard components to receive WizardEvent notifications.

Typically the WizardEventListener instance is defined on a Wizard using the eventListener attribute on the <ui:wizard> or the <wizardStep> tags.

The listener can expect to receive the following events.


Method Summary
 boolean handleEvent(WizardEvent event)
          Perform functionality suitable for the specified event.
 
Methods inherited from interface javax.faces.component.StateHolder
isTransient, restoreState, saveState, setTransient
 

Method Detail

handleEvent

boolean handleEvent(WizardEvent event)
                    throws javax.faces.event.AbortProcessingException
Perform functionality suitable for the specified event.

Parameters:
event - The WizardEvent being broadcast
Throws:
javax.faces.event.AbortProcessingException


Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.