Uses of Class
javafx.reflect.ObjectRef

Packages that use ObjectRef
javafx.reflect Provides reflective access to JavaFX values and types. 
 

Uses of ObjectRef in javafx.reflect
 

Methods in javafx.reflect that return ObjectRef
abstract  ObjectRef ClassRef.allocate()
          Return raw uninitialized object.
 ObjectRef ObjectRef.initialize()
          Finish constructing an object.
 ObjectRef LocalReflectionContext.makeObjectRef(java.lang.Object obj)
          Create a reference to a given Object.
 ObjectRef ClassRef.newInstance()
          Create a new initialized object.
 

Methods in javafx.reflect with parameters of type ObjectRef
 FunctionValueRef MethodRef.asFunction(ObjectRef owner)
          Associate the method with a receiver object to yield a function.
 LocationRef AttributeRef.getLocation(ObjectRef obj)
          Get a handle for the attribute in a specific object.
abstract  ValueRef AttributeRef.getValue(ObjectRef obj)
          Get the value of the attribute in a specified object.
abstract  void AttributeRef.initValue(ObjectRef obj, ValueRef ref)
           
abstract  ValueRef MethodRef.invoke(ObjectRef owner, ValueRef... arg)
          Invoke this method on the given receiver and arguments.
abstract  void AttributeRef.setValue(ObjectRef obj, ValueRef newValue)
          Set the value of the attribute in a specified object.