Interface IDirtyStateProvider

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      javafx.beans.property.ReadOnlyBooleanProperty dirtyProperty()
      A read-only property that provides the current dirty state.
      boolean isDirty()
      Returns the dirty state of this support.
      void markNonDirty()
      Notifies the provider to mark the current state as being unchanged with respect to the saved state.
    • Method Detail

      • dirtyProperty

        javafx.beans.property.ReadOnlyBooleanProperty dirtyProperty()
        A read-only property that provides the current dirty state.
        Returns:
        A read-only boolean property.
      • isDirty

        boolean isDirty()
        Returns the dirty state of this support.
        Returns:
        true if the source is dirty, false otherwise.
      • markNonDirty

        void markNonDirty()
        Notifies the provider to mark the current state as being unchanged with respect to the saved state.