Uses of Interface
org.controlsfx.control.PropertySheet.Item
Packages that use PropertySheet.Item
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 PropertySheet.Item in org.controlsfx.control
Methods in org.controlsfx.control that return types with arguments of type PropertySheet.ItemModifier and TypeMethodDescriptionjavafx.collections.ObservableList<PropertySheet.Item> PropertySheet.getItems()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 PropertySheet.ItemModifier 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.Constructor parameters in org.controlsfx.control with type arguments of type PropertySheet.ItemModifierConstructorDescriptionPropertySheet(javafx.collections.ObservableList<PropertySheet.Item> items) Creates a PropertySheet instance prepopulated with the items provided in the itemsObservableList. -
Uses of PropertySheet.Item in org.controlsfx.property
Classes in org.controlsfx.property that implement PropertySheet.ItemModifier and TypeClassDescriptionclassA convenience class for creating aPropertySheet.Itemfor use in thePropertySheetcontrol based on a property belonging to a JavaBean - simply provide aPropertyDescriptorand the rest will be taken care of automatically.Methods in org.controlsfx.property that return types with arguments of type PropertySheet.ItemModifier and TypeMethodDescriptionstatic javafx.collections.ObservableList<PropertySheet.Item> BeanPropertyUtils.getProperties(Object bean) Given a JavaBean, this method will return a list ofPropertySheet.Itemintances, which may be directly placed inside aPropertySheet(via itsitems list.static javafx.collections.ObservableList<PropertySheet.Item> BeanPropertyUtils.getProperties(Object bean, Predicate<PropertyDescriptor> test) Given a JavaBean, this method will return a list ofPropertySheet.Itemintances, which may be directly placed inside aPropertySheet(via itsitems list. -
Uses of PropertySheet.Item in org.controlsfx.property.editor
Classes in org.controlsfx.property.editor that implement interfaces with type arguments of type PropertySheet.ItemModifier and TypeClassDescriptionclassA default implementation of theCallbacktype required by thePropertySheetproperty editor factory.Methods in org.controlsfx.property.editor that return PropertySheet.ItemModifier and TypeMethodDescriptionfinal PropertySheet.ItemAbstractPropertyEditor.getProperty()Returns the property that this property editor is responsible for editing.Methods in org.controlsfx.property.editor with parameters of type PropertySheet.ItemModifier 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 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.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) Constructors in org.controlsfx.property.editor with parameters of type PropertySheet.ItemModifierConstructorDescriptionAbstractPropertyEditor(PropertySheet.Item property, C control) Creates an editable AbstractPropertyEditor instance for the given property using the given editing control.AbstractPropertyEditor(PropertySheet.Item property, C control, boolean readonly) Creates an AbstractPropertyEditor instance for the given property using the given editing control.