Interface PropertyEditor<T>

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

public interface PropertyEditor<T>
The base interface for all editors used by the PropertySheet control.
  • Method Summary

    Modifier and Type
    Method
    Description
    javafx.scene.Node
    Returns the editor responsible for editing this property.
    Returns the current value in the editor - this may not be the value of the property itself!
    void
    setValue(T value)
    Sets the value to display in the editor - this may not be the value of the property itself - and the property value will not change!
  • Method Details

    • getEditor

      javafx.scene.Node getEditor()
      Returns the editor responsible for editing this property.
    • getValue

      T getValue()
      Returns the current value in the editor - this may not be the value of the property itself!
    • setValue

      void setValue(T value)
      Sets the value to display in the editor - this may not be the value of the property itself - and the property value will not change!