Interface Listener<T>

All Known Implementing Classes:
View, View

public interface Listener<T>
Part of the observer patter to be implemented by observers listening to the source.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    notifyListener(Time time, T source)
    Notifies all listeners of a specific event or hook
  • Method Details

    • notifyListener

      void notifyListener(Time time, T source)
      Notifies all listeners of a specific event or hook
      Parameters:
      time - time-stamp of the call. Can be null
      source - the source object of the call