Interface SuspendableBinding

All Known Implementing Classes:
AbstractValueBinding, CheckboxValueBinding, FieldValueBinding

public interface SuspendableBinding
Represents a binding mechanism that can be suspended and resumed.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Resumes the operation of the binding mechanism, restoring it to its active state after being previously suspended.
    void
    Suspends the current binding, temporarily pausing its operation.
    boolean
    Indicates whether the current binding is in a suspended state.
  • Method Details

    • suspend

      void suspend()
      Suspends the current binding, temporarily pausing its operation.
    • resume

      void resume()
      Resumes the operation of the binding mechanism, restoring it to its active state after being previously suspended.
    • suspended

      boolean suspended()
      Indicates whether the current binding is in a suspended state.
      Returns:
      true if the binding is currently suspended, false otherwise