Class InspectorUtils

java.lang.Object
dk.gtz.graphedit.util.InspectorUtils

public class InspectorUtils extends Object
General utilities for manipulating and creating Property inspectors / editors.
  • Method Summary

    Modifier and Type
    Method
    Description
    static javafx.scene.Node
    createListEditorNode(javafx.beans.property.ListProperty<? extends javafx.beans.Observable> property)
    Get an inspector for a list of observables
    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
    static javafx.scene.Node
    createSetEditorNode(javafx.beans.property.SetProperty<? extends javafx.beans.Observable> property)
    Get an inspector for a set of observables
    static javafx.scene.Node
    getObservableInspector(javafx.beans.Observable o)
    General inspector creator function, use if you dont know what concrete type of Observable you have.
    static javafx.scene.Node
    getPropertyInspector(javafx.beans.property.BooleanProperty property)
    Get an inspector for a boolean property
    static javafx.scene.Node
    getPropertyInspector(javafx.beans.property.DoubleProperty property)
    Get an inspector for a double property
    static javafx.scene.Node
    getPropertyInspector(javafx.beans.property.FloatProperty property)
    Get an inspector for a float property
    static javafx.scene.Node
    getPropertyInspector(javafx.beans.property.IntegerProperty property)
    Get an inspector for an integer property
    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 an HBox 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 property
    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 an HBox 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 an HBox 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 property
    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
    static javafx.scene.Node
    getPropertyInspectorList(javafx.beans.property.ListProperty<javafx.beans.property.StringProperty> list)
    Get an inspector for a list of strings

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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 of Observable 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 provided Observable is not supported
      ClassCastException - if the provided Observable 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 an HBox with the name of the property on the left. If you just want the map inspector, see createMapTextEditorNode(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 an HBox with the name of the property on the left. If you just want the list inspector, see createListEditorNode(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 an HBox with the name of the property on the left. If you just want the set inspector, see createSetEditorNode(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