Class AbstractComponentCallback
- java.lang.Object
 - 
- org.apache.tapestry5.internal.structure.AbstractComponentCallback
 
 
- 
- All Implemented Interfaces:
 ComponentCallback
public abstract class AbstractComponentCallback extends Object implements ComponentCallback
Base class for most implementations ofComponentCallback, used when there is an underlyingEvent.- See Also:
 LifecycleNotificationComponentCallback
 
- 
- 
Constructor Summary
Constructors Constructor Description AbstractComponentCallback(Event event) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisEventAborted()Returns true if the underlying event has been aborted and no further event method invocations should occur.- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.tapestry5.internal.structure.ComponentCallback
run 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
AbstractComponentCallback
public AbstractComponentCallback(Event event)
 
 - 
 
- 
Method Detail
- 
isEventAborted
public boolean isEventAborted()
Description copied from interface:ComponentCallbackReturns true if the underlying event has been aborted and no further event method invocations should occur.- Specified by:
 isEventAbortedin interfaceComponentCallback- Returns:
 - true if the event is aborted, false if event processing should continue
 - See Also:
 Event.isAborted()
 
 - 
 
 -