Package dk.gtz.graphedit.util
Class InspectorUtils
java.lang.Object
dk.gtz.graphedit.util.InspectorUtils
General utilities for manipulating and creating
Property
inspectors / editors.-
Method Summary
Modifier and TypeMethodDescriptionstatic javafx.scene.Node
createListEditorNode
(javafx.beans.property.ListProperty<? extends javafx.beans.Observable> property) Get an inspector for a list of observablesstatic javafx.scene.Node
createMapTextEditorNode
(javafx.beans.property.MapProperty<? extends javafx.beans.Observable, ? extends javafx.beans.Observable> property) Get an inspector for a map of observablesstatic javafx.scene.Node
createSetEditorNode
(javafx.beans.property.SetProperty<? extends javafx.beans.Observable> property) Get an inspector for a set of observablesstatic javafx.scene.Node
getObservableInspector
(javafx.beans.Observable o) General inspector creator function, use if you dont know what concrete type ofObservable
you have.static javafx.scene.Node
getPropertyInspector
(javafx.beans.property.BooleanProperty property) Get an inspector for a boolean propertystatic javafx.scene.Node
getPropertyInspector
(javafx.beans.property.DoubleProperty property) Get an inspector for a double propertystatic javafx.scene.Node
getPropertyInspector
(javafx.beans.property.FloatProperty property) Get an inspector for a float propertystatic javafx.scene.Node
getPropertyInspector
(javafx.beans.property.IntegerProperty property) Get an inspector for an integer propertystatic javafx.scene.Node
getPropertyInspector
(javafx.beans.property.ListProperty<? extends javafx.beans.Observable> property) Get an inspector for a list of observables Note that this provides anHBox
with the name of the property on the left.static javafx.scene.Node
getPropertyInspector
(javafx.beans.property.LongProperty property) Get an inspector for a long propertystatic javafx.scene.Node
getPropertyInspector
(javafx.beans.property.MapProperty<? extends javafx.beans.Observable, ? extends javafx.beans.Observable> property) Get an inspector for a map of observales Note that this provides anHBox
with the name of the property on the left.static javafx.scene.Node
getPropertyInspector
(javafx.beans.property.ObjectProperty property) Get an inspector for a generic object.static javafx.scene.Node
getPropertyInspector
(javafx.beans.property.SetProperty<? extends javafx.beans.Observable> property) Get an inspector for a set of obseravables Note that this provides anHBox
with the name of the property on the left.static javafx.scene.Node
getPropertyInspector
(javafx.beans.property.StringProperty property) Get an inspector for a string propertystatic javafx.scene.control.TextField
getPropertyInspectorField
(javafx.beans.property.StringProperty property) Get an inspector for a string property, but instead of a TextArea, it gives a TextFieldstatic javafx.scene.Node
getPropertyInspectorList
(javafx.beans.property.ListProperty<javafx.beans.property.StringProperty> list) Get an inspector for a list of strings
-
Method Details
-
getObservableInspector
public static javafx.scene.Node getObservableInspector(javafx.beans.Observable o) General inspector creator function, use if you dont know what concrete type ofObservable
you have.- Parameters:
o
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
Observable
. - Throws:
RuntimeException
- if the providedObservable
is not supportedClassCastException
- if the providedObservable
is a collection type of non-observables or if it's a confusing ObjectProperty
-
getPropertyInspectorList
public static javafx.scene.Node getPropertyInspectorList(javafx.beans.property.ListProperty<javafx.beans.property.StringProperty> list) Get an inspector for a list of strings- Parameters:
list
- The list that the inspector modifies- Returns:
- a javafx component that can modify the values of the provided list
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.ObjectProperty property) Get an inspector for a generic object.
Note that this function contains intentional unsafe type casts and may throw class cast exceptions- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
ObjectProperty
. - Throws:
ClassCastException
- if the contained type is confusing
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.MapProperty<? extends javafx.beans.Observable, ? extends javafx.beans.Observable> property) Get an inspector for a map of observales Note that this provides anHBox
with the name of the property on the left. If you just want the map inspector, seecreateMapTextEditorNode(MapProperty)
instead.- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
MapProperty
- See Also:
-
createMapTextEditorNode
public static javafx.scene.Node createMapTextEditorNode(javafx.beans.property.MapProperty<? extends javafx.beans.Observable, ? extends javafx.beans.Observable> property) Get an inspector for a map of observables- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
MapProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.ListProperty<? extends javafx.beans.Observable> property) Get an inspector for a list of observables Note that this provides anHBox
with the name of the property on the left. If you just want the list inspector, seecreateListEditorNode(ListProperty)
instead.- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
ListProperty
- See Also:
-
createListEditorNode
public static javafx.scene.Node createListEditorNode(javafx.beans.property.ListProperty<? extends javafx.beans.Observable> property) Get an inspector for a list of observables- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
ListProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.SetProperty<? extends javafx.beans.Observable> property) Get an inspector for a set of obseravables Note that this provides anHBox
with the name of the property on the left. If you just want the set inspector, seecreateSetEditorNode(SetProperty)
instead.- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
SetProperty
- See Also:
-
createSetEditorNode
public static javafx.scene.Node createSetEditorNode(javafx.beans.property.SetProperty<? extends javafx.beans.Observable> property) Get an inspector for a set of observables- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
SetProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.StringProperty property) Get an inspector for a string property- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
StringProperty
-
getPropertyInspectorField
public static javafx.scene.control.TextField getPropertyInspectorField(javafx.beans.property.StringProperty property) Get an inspector for a string property, but instead of a TextArea, it gives a TextField- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
StringProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.BooleanProperty property) Get an inspector for a boolean property- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
BooleanProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.IntegerProperty property) Get an inspector for an integer property- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
IntegerProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.LongProperty property) Get an inspector for a long property- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
LongProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.FloatProperty property) Get an inspector for a float property- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
FloatProperty
-
getPropertyInspector
public static javafx.scene.Node getPropertyInspector(javafx.beans.property.DoubleProperty property) Get an inspector for a double property- Parameters:
property
- the thing that the inspector modifies- Returns:
- a javafx component that can modify the value of the provided
DoubleProperty
-