Module org.controlsfx.controls
Package org.controlsfx.property.editor
Class DefaultPropertyEditorFactory
- java.lang.Object
-
- org.controlsfx.property.editor.DefaultPropertyEditorFactory
-
- All Implemented Interfaces:
Callback<PropertySheet.Item,PropertyEditor<?>>
public class DefaultPropertyEditorFactory extends Object implements Callback<PropertySheet.Item,PropertyEditor<?>>
A default implementation of theCallback
type required by thePropertySheet
property editor factory
. By default this is the implementation used by PropertySheet, but developers may choose to provide their own, or more likely, extend this implementation and override thecall(org.controlsfx.control.PropertySheet.Item)
method to add in support for additional editor types.- See Also:
PropertySheet
-
-
Constructor Summary
Constructors Constructor Description DefaultPropertyEditorFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyEditor<?>
call(PropertySheet.Item item)
-
-
-
Method Detail
-
call
public PropertyEditor<?> call(PropertySheet.Item item)
- Specified by:
call
in interfaceCallback<PropertySheet.Item,PropertyEditor<?>>
-
-