org.apache.tapestry5.internal.util
Class NotificationEventCallback

java.lang.Object
  extended by org.apache.tapestry5.internal.util.NotificationEventCallback
All Implemented Interfaces:
ComponentEventCallback

public class NotificationEventCallback
extends Object
implements ComponentEventCallback

A ComponentEventCallback used for notification events. Event handler methods may return true (to abort the event) or false (to allow the event to continue bubbling up), but all other values are forbidden.


Constructor Summary
NotificationEventCallback(String eventType, String completeId)
           
 
Method Summary
 boolean handleResult(Object result)
          Invoked to handle a non-null event handler method result.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NotificationEventCallback

public NotificationEventCallback(String eventType,
                                 String completeId)
Method Detail

handleResult

public boolean handleResult(Object result)
Description copied from interface: ComponentEventCallback
Invoked to handle a non-null event handler method result. The handler should determine whether the value is acceptible, and throw an exception if not. Any thrown exception will be wrapped to identify the component and method from which the value was returned.

Boolean values are not passed to the handler. Booleans are used to indicate that the event has been handled (true) or that a further search for handlers should continue (true). If a component event method returns true, then Event.isAborted() will return true.

Specified by:
handleResult in interface ComponentEventCallback
Parameters:
result - the result value return from the event handler method
Returns:
true if the event is aborted, false if the event may continue


Copyright © 2006-2009 Apache Software Foundation. All Rights Reserved.