Uses of Class
javafx.reflect.ValueRef

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

Uses of ValueRef in javafx.reflect
 

Subclasses of ValueRef in javafx.reflect
 class FunctionValueRef
          A mirror of a function value.
 class ObjectRef
          A handle/proxy for an Object reference.
 

Methods in javafx.reflect that return ValueRef
abstract  ValueRef FunctionValueRef.apply(ValueRef... arg)
          Invoke this function.
 ValueRef ValueRef.getItem(int index)
           
abstract  ValueRef SequenceBuilder.getSequence()
          Get the final sequence result.
abstract  ValueRef LocationRef.getValue()
          Get the (current) value "stored" in this location.
abstract  ValueRef AttributeRef.getValue(ObjectRef obj)
          Get the value of the attribute in a specified object.
 ValueRef ObjectRef.invoke(MethodRef method, ValueRef... args)
          Convenience method to invoke a member function.
abstract  ValueRef MethodRef.invoke(ObjectRef owner, ValueRef... arg)
          Invoke this method on the given receiver and arguments.
 ValueRef ObjectRef.invoke(java.lang.String name, ValueRef... args)
          Convenience method to invoke a member function.
 ValueRef ReflectionContext.makeSequence(TypeRef elementType, ValueRef... values)
           
 

Methods in javafx.reflect with parameters of type ValueRef
abstract  void SequenceBuilder.append(ValueRef value)
           
abstract  ValueRef FunctionValueRef.apply(ValueRef... arg)
          Invoke this function.
 void ObjectRef.initAttribute(AttributeRef attr, ValueRef value)
          Initialize an attribute of an object to a given value.
 void ObjectRef.initAttribute(java.lang.String name, ValueRef value)
          Initialize an attribute of an object to a given value.
abstract  void AttributeRef.initValue(ObjectRef obj, ValueRef ref)
           
 ValueRef ObjectRef.invoke(MethodRef method, ValueRef... args)
          Convenience method to invoke a member function.
abstract  ValueRef MethodRef.invoke(ObjectRef owner, ValueRef... arg)
          Invoke this method on the given receiver and arguments.
 ValueRef ObjectRef.invoke(java.lang.String name, ValueRef... args)
          Convenience method to invoke a member function.
 ValueRef ReflectionContext.makeSequence(TypeRef elementType, ValueRef... values)
           
abstract  void AttributeRef.setValue(ObjectRef obj, ValueRef newValue)
          Set the value of the attribute in a specified object.
abstract  void LocationRef.setValue(ValueRef newValue)
          Set the (current) value stored in this location.