Interface IObservable

All Known Implementing Classes:
ParamFrame

public interface IObservable
This interface is used in order to respect the design patter Observer. It defines the functionnement of the object that notify the observer
Since:
3.0
  • Method Summary

    Modifier and Type Method Description
    void addObserver​(IObserver observer)
    Add a IObserver to the list
    void notifierAll()
    Notify all the Observer of the list
    void removeObserver​(IObserver observer)
    Remove a IObserver from the list
  • Method Details

    • addObserver

      void addObserver​(IObserver observer)
      Add a IObserver to the list
      Parameters:
      observer - The observer to add
    • removeObserver

      void removeObserver​(IObserver observer)
      Remove a IObserver from the list
      Parameters:
      observer - The observer to remove
    • notifierAll

      void notifierAll()
      Notify all the Observer of the list
      Since:
      3.0
      See Also:
      IObserver.notifier()