See: Description
| Interface | Description |
|---|---|
| Editor<T> |
An interface for an editor of a certain data type.
|
| LazyInitializeEditor<T> |
A
LazyInitializeEditor is a markup interface to indicate the editor will initialize lazily, either because of
the performance consideration, or because the information needed for the initialization of the editor is not
available in the construction time (i.e. |
| Class | Description |
|---|---|
| CheckBoxEditor |
An editor based on
CheckBox for Boolean. |
| ChoiceBoxEditor<T> |
An editor based on
ChoiceBox for any data that can be enumerated. |
| ComboBoxEditor<T> |
An editor based on
ComboBox for any data that can be enumerated. |
| EditorContext |
The editor context is used by EditorManager and CellEditorManager so that for the same type, different editors can be
registered since the EditorContext is different.
|
| EditorManager |
A global object that can register editor with a type and a EditorContext.
|
| EnumChoiceBoxEditor<T extends java.lang.Enum> | |
| EnumComboBoxEditor<T extends java.lang.Enum> | |
| TextFieldEditor |
An editor based on
TextField for String. |