Uses of Interface
org.pdfsam.eventstudio.Listener

Packages that use Listener
Package
Description
 
  • Uses of Listener in org.pdfsam.eventstudio

    Methods in org.pdfsam.eventstudio with parameters of type Listener
    Modifier and Type
    Method
    Description
    <T> void
    DefaultEventStudio.add(Class<T> eventClass, Listener<T> listener)
    Adds a Listener to the hidden station listening for the given event class, hiding the station abstraction.
    <T> void
    DefaultEventStudio.add(Class<T> eventClass, Listener<T> listener, int priority, ReferenceStrength strength)
    Adds a Listener (with the given priority and strength ) to the hidden station listening for the given event class, hiding the station abstraction.
    <T> void
    DefaultEventStudio.add(Class<T> eventClass, Listener<T> listener, String station)
     
    <T> void
    DefaultEventStudio.add(Class<T> eventClass, Listener<T> listener, String station, int priority, ReferenceStrength strength)
     
    <T> void
    DefaultEventStudio.add(Listener<T> listener)
    Adds a Listener to the hidden station, hiding the station abstraction.
    <T> void
    DefaultEventStudio.add(Listener<T> listener, int priority, ReferenceStrength strength)
    Adds a Listener (with the given priority and strength ) to the hidden station, hiding the station abstraction.
    <T> void
    DefaultEventStudio.add(Listener<T> listener, String station)
     
    <T> void
    DefaultEventStudio.add(Listener<T> listener, String station, int priority, ReferenceStrength strength)
     
    <T> void
    EventStudio.add(Class<T> eventClass, Listener<T> listener, String station)
    Adds the given Listener, listening for the given event class, to the given station using default priority(0) ad default strength ReferenceStrength.STRONG.
    <T> void
    EventStudio.add(Class<T> eventClass, Listener<T> listener, String station, int priority, ReferenceStrength strength)
    Adds the given Listener, listening for the given event class, to the given station using the given priority (low values mean higher priority) and strength.
    <T> void
    EventStudio.add(Listener<T> listener, String station)
    Adds the given Listener to the given station using default priority(0) ad default strength ReferenceStrength.STRONG.
    <T> void
    EventStudio.add(Listener<T> listener, String station, int priority, ReferenceStrength strength)
    Adds the given Listener to the given station using the given priority (low values mean higher priority) and strength.
    <T> boolean
    DefaultEventStudio.remove(Class<T> eventClass, Listener<T> listener)
    Removes the given listener listening on the given event, from the hidden station, hiding the station abstraction.
    <T> boolean
    DefaultEventStudio.remove(Class<T> eventClass, Listener<T> listener, String station)
     
    <T> boolean
    DefaultEventStudio.remove(Listener<T> listener)
    Removes the given listener from the hidden station, hiding the station abstraction.
    <T> boolean
    DefaultEventStudio.remove(Listener<T> listener, String station)
     
    <T> boolean
    EventStudio.remove(Class<T> eventClass, Listener<T> listener, String station)
    Removes the first occurrence of the given Listener listening for the given event, from the given station
    <T> boolean
    EventStudio.remove(Listener<T> listener, String station)
    Removes the first occurrence of the given Listener from the given station.