Interface OptionEditor<T>

  • Type Parameters:
    T - The type of the property that the OptionEditor is responsible for editing.
    All Known Implementing Classes:
    OptionEditorBase

    public interface OptionEditor<T>
    The base interface for all editors used by the SettingsPane control.
    Since:
    2.0.0
    • Method Detail

      • getEditor

        Node getEditor()
        Returns the editor responsible for editing this option.
        Returns:
        the Node used for editing this option
      • getValue

        T getValue()
        Returns the current value in the editor
        Returns:
        T the value in the editor, of type T
      • setValue

        void setValue​(T value)
        Sets the value to display in the editor
        Parameters:
        value - sets the value to display in the editor, of type T