Class DummyConstraintEditor<T>

java.lang.Object
docking.widgets.table.constrainteditor.DummyConstraintEditor<T>
Type Parameters:
T -
All Implemented Interfaces:
ColumnConstraintEditor<T>

public final class DummyConstraintEditor<T> extends Object implements ColumnConstraintEditor<T>
An editor that is always invalid.

Used internally to indicate a constraint does not provide an editor of its own.

  • Constructor Details

    • DummyConstraintEditor

      public DummyConstraintEditor(String message)
      Constructor.
      Parameters:
      message - to display
  • Method Details

    • getInlineComponent

      public Component getInlineComponent()
      Description copied from interface: ColumnConstraintEditor
      The inline component resides in the configuration interface on the same visual line as the column and constraint selection widgets. It is intended to be a relatively small and simple interface for configuring the constraints' values.
      Specified by:
      getInlineComponent in interface ColumnConstraintEditor<T>
      Returns:
      the inline editor component
    • getDetailComponent

      public Component getDetailComponent()
      Description copied from interface: ColumnConstraintEditor
      The detail component resides in the configuration interface below the column and constraint selection widgets, and is afforded greater space. It is intended to be a more feature-rich editor that provides greater insight or control of the constraints value definition.
      Specified by:
      getDetailComponent in interface ColumnConstraintEditor<T>
      Returns:
      the detail editor component
    • getValue

      public ColumnConstraint<T> getValue()
      Description copied from interface: ColumnConstraintEditor
      Get the current value from the editor, in the form of a constraint.
      Specified by:
      getValue in interface ColumnConstraintEditor<T>
      Returns:
      the editors' current value
    • setValue

      public void setValue(ColumnConstraint<T> value)
      Description copied from interface: ColumnConstraintEditor
      Set the current value within the editor
      Specified by:
      setValue in interface ColumnConstraintEditor<T>
      Parameters:
      value - the new value to set
    • reset

      public void reset()
      Description copied from interface: ColumnConstraintEditor
      Reset the editor to a known-good state.
      Specified by:
      reset in interface ColumnConstraintEditor<T>
    • hasValidValue

      public boolean hasValidValue()
      Description copied from interface: ColumnConstraintEditor
      Determine if the editor contains a valid value; do the UI widgets and state match, is the state sensible for the constraint.
      Specified by:
      hasValidValue in interface ColumnConstraintEditor<T>
      Returns:
      true if the configuration is valid, false otherwise
    • getErrorMessage

      public String getErrorMessage()
      Description copied from interface: ColumnConstraintEditor
      If the editor contains and invalid value, this message should indicate why the value is invalid. Only called if hasValidValue() returns false.
      Specified by:
      getErrorMessage in interface ColumnConstraintEditor<T>
      Returns:
      an error message, or an empty string if no error
    • addChangeListener

      public void addChangeListener(ChangeListener constraintEditorChangeListener)
      Description copied from interface: ColumnConstraintEditor
      Register a callback handler for responding to changes made within the editor
      Specified by:
      addChangeListener in interface ColumnConstraintEditor<T>
      Parameters:
      constraintEditorChangeListener - listener callback
    • removeChangeListener

      public void removeChangeListener(ChangeListener constraintEditorChangeListener)
      Description copied from interface: ColumnConstraintEditor
      Remove a callback handler that was responding changes made within the editor
      Specified by:
      removeChangeListener in interface ColumnConstraintEditor<T>
      Parameters:
      constraintEditorChangeListener - listener callback