Uses of Interface
org.controlsfx.property.editor.PropertyEditor
-
Packages that use PropertyEditor Package Description org.controlsfx.control A package containing a number of useful controls-related classes that do not exist in the base JavaFX distribution.org.controlsfx.property A package containing a number of useful classes related to thePropertySheet
control.org.controlsfx.property.editor A package containing a number of useful editor classes related to thePropertySheet
control. -
-
Uses of PropertyEditor in org.controlsfx.control
Methods in org.controlsfx.control that return types with arguments of type PropertyEditor Modifier and Type Method Description default Optional<Class<? extends PropertyEditor<?>>>
PropertySheet.Item. getPropertyEditorClass()
Returns an Optional wrapping the class of the PropertyEditor that should be used for editing this item.javafx.util.Callback<PropertySheet.Item,PropertyEditor<?>>
PropertySheet. getPropertyEditorFactory()
javafx.beans.property.SimpleObjectProperty<javafx.util.Callback<PropertySheet.Item,PropertyEditor<?>>>
PropertySheet. propertyEditorFactory()
The property editor factory is used by the PropertySheet to determine whichPropertyEditor
to use for a givenPropertySheet.Item
.Method parameters in org.controlsfx.control with type arguments of type PropertyEditor Modifier and Type Method Description void
PropertySheet. setPropertyEditorFactory(javafx.util.Callback<PropertySheet.Item,PropertyEditor<?>> factory)
Sets a new editor factory used by the PropertySheet to determine whichPropertyEditor
to use for a givenPropertySheet.Item
. -
Uses of PropertyEditor in org.controlsfx.property
Methods in org.controlsfx.property that return types with arguments of type PropertyEditor Modifier and Type Method Description Optional<Class<? extends PropertyEditor<?>>>
BeanProperty. getPropertyEditorClass()
Returns an Optional wrapping the class of the PropertyEditor that should be used for editing this item. -
Uses of PropertyEditor in org.controlsfx.property.editor
Classes in org.controlsfx.property.editor that implement PropertyEditor Modifier and Type Class Description class
AbstractPropertyEditor<T,C extends javafx.scene.Node>
An abstract implementation of thePropertyEditor
interface.Methods in org.controlsfx.property.editor that return PropertyEditor Modifier and Type Method Description PropertyEditor<?>
DefaultPropertyEditorFactory. call(PropertySheet.Item item)
static PropertyEditor<?>
Editors. createCheckEditor(PropertySheet.Item property)
static <T> PropertyEditor<?>
Editors. createChoiceEditor(PropertySheet.Item property, Collection<T> choices)
static PropertyEditor<?>
Editors. createColorEditor(PropertySheet.Item property)
static PropertyEditor<?>
Editors. createDateEditor(PropertySheet.Item property)
static PropertyEditor<?>
Editors. createFontEditor(PropertySheet.Item property)
static PropertyEditor<?>
Editors. createNumericEditor(PropertySheet.Item property)
static PropertyEditor<?>
Editors. createTextEditor(PropertySheet.Item property)
Methods in org.controlsfx.property.editor that return types with arguments of type PropertyEditor Modifier and Type Method Description static Optional<PropertyEditor<?>>
Editors. createCustomEditor(PropertySheet.Item property)
Static method used to create an instance of the custom editor returned via a call toPropertySheet.Item.getPropertyEditorClass()
The class returned must declare a constructor that takes a single parameter of type PropertySheet.Item into which the parameter supplied to this method will be passed.
-