javafx.reflect
Class FunctionTypeRef

java.lang.Object
  extended by javafx.reflect.TypeRef
      extended by javafx.reflect.FunctionTypeRef

public class FunctionTypeRef
extends TypeRef

A run-time representation of a JavaFX function type.


Method Summary
 boolean equals(FunctionTypeRef ftype)
           
 TypeRef getArgumentType(int i)
           
 TypeRef getReturnType()
           
 boolean isVarArgs()
          Was this method declarfed to take a variable number of arguments? Note that varArgs aren't yet supported in JavaFX.
 int minArgs()
          The fixed (minimum) number of arguments needed.
 
Methods inherited from class javafx.reflect.TypeRef
getSequenceType, isAssignableFrom, isJfxType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

minArgs

public int minArgs()
The fixed (minimum) number of arguments needed. Does not count varargs, and (possible future) optional args.


isVarArgs

public boolean isVarArgs()
Was this method declarfed to take a variable number of arguments? Note that varArgs aren't yet supported in JavaFX.


getArgumentType

public TypeRef getArgumentType(int i)

getReturnType

public TypeRef getReturnType()

equals

public boolean equals(FunctionTypeRef ftype)