Interface ComponentCallback
-
- All Known Implementing Classes:
AbstractComponentCallback
,LifecycleNotificationComponentCallback
public interface ComponentCallback
Callback interface, used when invoking lifecycle methods on components.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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
-
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()
-
-