org.apache.tapestry5.internal.structure
Interface ComponentCallback

All Known Implementing Classes:
AbstractComponentCallback, LifecycleNotificationComponentCallback

public interface ComponentCallback

Callback interface, used when invoking lifecycle methods on components.


Method Summary
 boolean isEventAborted()
          Returns true if the underlying event has been aborted and no further event method invocations should occur.
 void run(Component component)
          Callback method, passed a component to operate upon.
 

Method Detail

run

void run(Component component)
Callback method, passed a component to operate upon.


isEventAborted

boolean isEventAborted()
Returns true if the underlying event has been aborted and no further event method invocations should occur.

Returns:
true if the event is aborted, false if event processing should continue
See Also:
Event.isAborted()


Copyright © 2003-2012 The Apache Software Foundation.