Interface ComponentCallback

All Known Implementing Classes:
AbstractComponentCallback, LifecycleNotificationComponentCallback

public interface ComponentCallback
Callback interface, used when invoking lifecycle methods on components.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    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 Details

    • 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: