T - The type of the property that the PropertyEditor is responsible
for editing.public interface PropertyEditor<T>
PropertySheet control.| Modifier and Type | Method and Description |
|---|---|
javafx.scene.Node |
getEditor()
Returns the editor responsible for editing this property.
|
T |
getValue()
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!
|
javafx.scene.Node getEditor()
T getValue()
void setValue(T value)