Uses of Interface
org.controlsfx.property.editor.PropertyEditor
Packages that use PropertyEditor
Package
Description
A package containing a number of useful controls-related classes that do not
exist in the base JavaFX distribution.
A package containing a number of useful classes related to the
PropertySheet control.A package containing a number of useful editor classes related to the
PropertySheet control.-
Uses of PropertyEditor in org.controlsfx.control
Methods in org.controlsfx.control that return types with arguments of type PropertyEditorModifier and TypeMethodDescriptiondefault Optional<Class<? extends PropertyEditor<?>>> PropertySheet.Item.getPropertyEditorClass()Returns an Optional wrapping the class of the PropertyEditor that should be used for editing this item.final javafx.util.Callback<PropertySheet.Item, PropertyEditor<?>> PropertySheet.getPropertyEditorFactory()final javafx.beans.property.SimpleObjectProperty<javafx.util.Callback<PropertySheet.Item, PropertyEditor<?>>> PropertySheet.propertyEditorFactory()The property editor factory is used by the PropertySheet to determine whichPropertyEditorto use for a givenPropertySheet.Item.Method parameters in org.controlsfx.control with type arguments of type PropertyEditorModifier and TypeMethodDescriptionfinal voidPropertySheet.setPropertyEditorFactory(javafx.util.Callback<PropertySheet.Item, PropertyEditor<?>> factory) Sets a new editor factory used by the PropertySheet to determine whichPropertyEditorto use for a givenPropertySheet.Item. -
Uses of PropertyEditor in org.controlsfx.property
Methods in org.controlsfx.property that return types with arguments of type PropertyEditorModifier and TypeMethodDescriptionOptional<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 PropertyEditorModifier and TypeClassDescriptionclassAbstractPropertyEditor<T, C extends javafx.scene.Node>An abstract implementation of thePropertyEditorinterface.Classes in org.controlsfx.property.editor that implement interfaces with type arguments of type PropertyEditorModifier and TypeClassDescriptionclassA default implementation of theCallbacktype required by thePropertySheetproperty editor factory.Methods in org.controlsfx.property.editor that return PropertyEditorModifier and TypeMethodDescriptionDefaultPropertyEditorFactory.call(PropertySheet.Item item) static final PropertyEditor<?> Editors.createCheckEditor(PropertySheet.Item property) static final <T> PropertyEditor<?> Editors.createChoiceEditor(PropertySheet.Item property, Collection<T> choices) static final PropertyEditor<?> Editors.createColorEditor(PropertySheet.Item property) static final PropertyEditor<?> Editors.createDateEditor(PropertySheet.Item property) static final PropertyEditor<?> Editors.createFontEditor(PropertySheet.Item property) static final PropertyEditor<?> Editors.createNumericEditor(PropertySheet.Item property) static final PropertyEditor<?> Editors.createTextEditor(PropertySheet.Item property) Methods in org.controlsfx.property.editor that return types with arguments of type PropertyEditorModifier and TypeMethodDescriptionstatic final 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.