Interface ContentChangedListener

  • All Known Implementing Classes:
    ContentChangedAdapter

    public interface ContentChangedListener
    This listener will be called by the parent object when its content changes.
    Author:
    matt
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void contentChanged​(Object parentObject)
      This method will be called when the parent object to which this listener is added, has been changed.
      void contentSafe​(Object parentObject)
      This method will be called when the parent object has been declared safe (or saved, persisted, ...)
    • Method Detail

      • contentChanged

        void contentChanged​(Object parentObject)
        This method will be called when the parent object to which this listener is added, has been changed.
        Parameters:
        parentObject - The changed object.
      • contentSafe

        void contentSafe​(Object parentObject)
        This method will be called when the parent object has been declared safe (or saved, persisted, ...)
        Parameters:
        parentObject - The safe object.