A C E F G H I J L M N O R S T V

A

allocate() - Method in class javafx.reflect.ClassRef
Return raw uninitialzied object.
append(ValueRef) - Method in class javafx.reflect.SequenceBuilder
 
apply(ValueRef...) - Method in class javafx.reflect.FunctionValueRef
Invoke this function.
asFunction(ObjectRef) - Method in class javafx.reflect.MethodRef
Associate the method with a receiver object to yield a function.
AttributeRef - Class in javafx.reflect
A run-time represention of a JavaFX attribute in a class.
AttributeRef() - Constructor for class javafx.reflect.AttributeRef
 

C

ClassRef - Class in javafx.reflect
A run-time representation of a JavaFX class.
ClassRef(ReflectionContext) - Constructor for class javafx.reflect.ClassRef
 

E

equals(ClassRef) - Method in class javafx.reflect.ClassRef
 
equals(FunctionTypeRef) - Method in class javafx.reflect.FunctionTypeRef
 

F

findClass(String) - Method in class javafx.reflect.LocalReflectionContext
 
findClass(String) - Method in class javafx.reflect.ReflectionContext
Get the ClassRef for the class with the given name.
FunctionTypeRef - Class in javafx.reflect
A run-time representation of a JavaFX function type.
FunctionValueRef - Class in javafx.reflect
A mirror of a function value.
FunctionValueRef() - Constructor for class javafx.reflect.FunctionValueRef
 

G

getAnyType() - Method in class javafx.reflect.ReflectionContext
Get the TypeRef for the "any" type.
getArgumentType(int) - Method in class javafx.reflect.FunctionTypeRef
 
getAttribute(String) - Method in class javafx.reflect.ClassRef
Get the attribute (field) of this class with a given name.
getAttributes(boolean) - Method in class javafx.reflect.ClassRef
 
getComponentType() - Method in class javafx.reflect.SequenceTypeRef
 
getDeclaringType() - Method in class javafx.reflect.MemberRef
 
getInstance() - Static method in class javafx.reflect.LocalReflectionContext
 
getInstance() - Static method in class javafx.reflect.ReflectionContext
Find context-dependent default ReflectionContext.
getIntegerType() - Method in class javafx.reflect.LocalReflectionContext
 
getIntegerType() - Method in class javafx.reflect.ReflectionContext
Get the run-time representation of the JavaXF Integer type.
getItem(int) - Method in class javafx.reflect.ValueRef
 
getItemCount() - Method in class javafx.reflect.ValueRef
 
getLocation(ObjectRef) - Method in class javafx.reflect.AttributeRef
Get a handle for the attribute in a specific object.
getMember(String, TypeRef) - Method in class javafx.reflect.ClassRef
Get a member with the matching name and type.
getMembers(MemberHandler, boolean) - Method in class javafx.reflect.ClassRef
 
getMembers(boolean) - Method in class javafx.reflect.ClassRef
 
getMethod(String, TypeRef...) - Method in class javafx.reflect.ClassRef
Find the function that (best) matches the name and argument types.
getName() - Method in class javafx.reflect.ClassRef
 
getName() - Method in class javafx.reflect.MemberRef
 
getNumberType() - Method in class javafx.reflect.LocalReflectionContext
 
getNumberType() - Method in class javafx.reflect.ReflectionContext
Get the run-time representation of the JavaXF Number type.
getReflectionContect() - Method in class javafx.reflect.ClassRef
 
getReturnType() - Method in class javafx.reflect.FunctionTypeRef
 
getSequence() - Method in class javafx.reflect.SequenceBuilder
Get the final sequence result.
getSequenceType() - Method in class javafx.reflect.TypeRef
Get a SequenceTypeRef using this as the item type.
getSuperClasses(boolean) - Method in class javafx.reflect.ClassRef
 
getType() - Method in class javafx.reflect.AttributeRef
 
getType() - Method in class javafx.reflect.FunctionValueRef
Get the run-time type of this value.
getType() - Method in class javafx.reflect.MethodRef
 
getType() - Method in class javafx.reflect.ObjectRef
 
getType() - Method in class javafx.reflect.ValueRef
Get the run-time type of this value.
getValue(ObjectRef) - Method in class javafx.reflect.AttributeRef
Get the value of the attribute in a specified object.
getValue() - Method in class javafx.reflect.LocationRef
Get the (current) value "stored" in this location.

H

handle(MemberRef) - Method in interface javafx.reflect.MemberHandler
Do something with the given member.

I

initAttribute(String, ValueRef) - Method in class javafx.reflect.ObjectRef
Initialize an attribute of an object to a given value.
initAttribute(AttributeRef, ValueRef) - Method in class javafx.reflect.ObjectRef
Initialize an attribute of an object to a given value.
initBinding(String, LocationRef) - Method in class javafx.reflect.ObjectRef
Bind an attribute of an object to a given location.
initBinding(AttributeRef, LocationRef) - Method in class javafx.reflect.ObjectRef
Bind an attribute of an object to a given location.
initialize() - Method in class javafx.reflect.ObjectRef
Finish constructing an object.
initValue(ObjectRef, ValueRef) - Method in class javafx.reflect.AttributeRef
 
invoke(ObjectRef, ValueRef...) - Method in class javafx.reflect.MethodRef
Invoke this method on the given receiver and arguments.
invoke(String, ValueRef...) - Method in class javafx.reflect.ObjectRef
Convenience method to invoke a member function.
invoke(MethodRef, ValueRef...) - Method in class javafx.reflect.ObjectRef
Convenience method to invoke a member function.
isAssignableFrom(ClassRef) - Method in class javafx.reflect.ClassRef
 
isAssignableFrom(TypeRef) - Method in class javafx.reflect.TypeRef
For now too conservative, if not comapring ClassRef types, use equals.
isNull() - Method in class javafx.reflect.ValueRef
 
isStatic() - Method in class javafx.reflect.MemberRef
 
isVarArgs() - Method in class javafx.reflect.FunctionTypeRef
Was this method declarfed to take a variable number of arguments? Note that varArgs aren't yet supported in JavaFX.

J

javafx.reflect - package javafx.reflect
Provides reflective access to JavaFX values and types.

L

LocalReflectionContext - Class in javafx.reflect
Implementation of ReflectionContext using Java reflection.
LocationRef - Class in javafx.reflect
A reference to a specific location (var or attribute).
LocationRef() - Constructor for class javafx.reflect.LocationRef
 

M

makeClassRef(Class) - Method in class javafx.reflect.LocalReflectionContext
Create a reference to a given Object.
makeObjectRef(Object) - Method in class javafx.reflect.LocalReflectionContext
Create a reference to a given Object.
makeSequence(TypeRef, ValueRef...) - Method in class javafx.reflect.ReflectionContext
 
makeSequenceBuilder(TypeRef) - Method in class javafx.reflect.LocalReflectionContext
 
makeSequenceBuilder(TypeRef) - Method in class javafx.reflect.ReflectionContext
Create a helper object for building a sequence value.
MemberHandler - Interface in javafx.reflect
Call-back object for use when iterating over a set of members.
MemberRef - Class in javafx.reflect
A run-time represention of a JavaFX member of a class.
MethodRef - Class in javafx.reflect
A reference to a function in a class.
MethodRef() - Constructor for class javafx.reflect.MethodRef
 
minArgs() - Method in class javafx.reflect.FunctionTypeRef
The fixed (minimum) number of arguments needed.

N

newInstance() - Method in class javafx.reflect.ClassRef
Create a new initialized object.

O

ObjectRef - Class in javafx.reflect
A handle/proxy for an Object reference.
ObjectRef() - Constructor for class javafx.reflect.ObjectRef
 

R

ReflectionContext - Class in javafx.reflect
Context for reflective operations.
ReflectionContext() - Constructor for class javafx.reflect.ReflectionContext
 

S

SequenceBuilder - Class in javafx.reflect
Helper class for reflectively building sequences.
SequenceBuilder() - Constructor for class javafx.reflect.SequenceBuilder
 
SequenceTypeRef - Class in javafx.reflect
A run-time representation of a JavaFX sequence type.
setValue(ObjectRef, ValueRef) - Method in class javafx.reflect.AttributeRef
Set the value of the attribute in a specified object.
setValue(ValueRef) - Method in class javafx.reflect.LocationRef
Set the (current) value stored in this location.

T

TypeRef - Class in javafx.reflect
A run-time representation of a JavaFX type.

V

ValueRef - Class in javafx.reflect
A proxy/mirror for a run-time value.
ValueRef() - Constructor for class javafx.reflect.ValueRef
 

A C E F G H I J L M N O R S T V