Uses of Interface
org.controlsfx.control.PropertySheet.Item
-
Packages that use PropertySheet.Item 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 PropertySheet.Item in org.controlsfx.control
Methods in org.controlsfx.control that return types with arguments of type PropertySheet.Item Modifier and Type Method Description javafx.collections.ObservableList<PropertySheet.Item>
PropertySheet. getItems()
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 PropertySheet.Item 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
.Constructor parameters in org.controlsfx.control with type arguments of type PropertySheet.Item Constructor Description PropertySheet(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.Item Modifier and Type Class Description class
BeanProperty
A convenience class for creating aPropertySheet.Item
for use in thePropertySheet
control based on a property belonging to a JavaBean - simply provide aPropertyDescriptor
and the rest will be taken care of automatically.Methods in org.controlsfx.property that return types with arguments of type PropertySheet.Item Modifier and Type Method Description static javafx.collections.ObservableList<PropertySheet.Item>
BeanPropertyUtils. getProperties(Object bean)
Given a JavaBean, this method will return a list ofPropertySheet.Item
intances, 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.Item
intances, which may be directly placed inside aPropertySheet
(via itsitems list
. -
Uses of PropertySheet.Item in org.controlsfx.property.editor
Methods in org.controlsfx.property.editor that return PropertySheet.Item Modifier and Type Method Description PropertySheet.Item
AbstractPropertyEditor. getProperty()
Returns the property that this property editor is responsible for editing.Methods in org.controlsfx.property.editor with parameters of type PropertySheet.Item 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 Optional<PropertyEditor<?>>
Editors. createCustomEditor(PropertySheet.Item property)
Static method used to create an instance of the custom editor returned via a call togetPropertyEditorClass()
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 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)
Constructors in org.controlsfx.property.editor with parameters of type PropertySheet.Item Constructor Description AbstractPropertyEditor(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.
-