Package 

Interface ValueObserver

    • Method Summary

      Modifier and Type Method Description
      abstract Unit update(T oldValue, T newValue) Can be implemented to react on changes to the observed property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • update

         abstract Unit update(T oldValue, T newValue)

        Can be implemented to react on changes to the observed property.

        Parameters:
        oldValue - Old value of property.
        newValue - New value of property.