Interface HasListeners<T>

  • All Known Implementing Classes:
    Listeners

    public interface HasListeners<T>
    Interface that defines that a specific object has listeners of type T that can be added or removed.
    Author:
    bdferris
    See Also:
    Listeners
    • Method Detail

      • addListener

        void addListener​(T listener)
      • removeListener

        void removeListener​(T listener)