Interface Observable

All Known Implementing Classes:
AbstractElementExplorer, LayerBar, LayerElementExplorer, LayerSelectionExplorer, LayerTreeBar, QueryResultsPanel

public interface Observable
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Adds a new observer for this instance.
    void
    Removes the specified observer from this instance.
  • Method Details

    • addObserver

      void addObserver(Observer observer)
      Adds a new observer for this instance.
      Parameters:
      observer - the observer to add.
    • removeObserver

      void removeObserver(Observer observer)
      Removes the specified observer from this instance.
      Parameters:
      observer - the observer to remove.