Uses of Interface
edu.rice.cs.dynamicjava.symbol.Function

Packages that use Function
edu.rice.cs.dynamicjava.interpreter   
edu.rice.cs.dynamicjava.symbol   
 

Uses of Function in edu.rice.cs.dynamicjava.interpreter
 

Constructors in edu.rice.cs.dynamicjava.interpreter with parameters of type Function
FunctionContext(TypeContext next, Function f)
           
FunctionSignatureContext(TypeContext next, Function f)
           
 

Uses of Function in edu.rice.cs.dynamicjava.symbol
 

Subinterfaces of Function in edu.rice.cs.dynamicjava.symbol
 interface DJConstructor
          Represents a constructor declaration.
 interface DJMethod
          Represents a method declaration.
 

Classes in edu.rice.cs.dynamicjava.symbol that implement Function
 class ArrayCloneMethod
          Provides a DJMethod interface for accessing an array's implicit "clone" method.
 class GetClassMethod
          Provides a DJMethod interface for accessing a class's implicit "getClass()" method.
protected  class JavaClass.JavaConstructor
          Non-static in order to determine the outer type.
protected  class JavaClass.JavaMethod
           
 class LocalFunction
          Represents a local function declaration.
 class SpecialMethod
          Abstract parent for special implicit methods.
 

Methods in edu.rice.cs.dynamicjava.symbol that return types with arguments of type Function
 Iterable<? extends Function> TypeSystem.UnmatchedFunctionLookupException.candidates()
           
 Iterable<? extends Function> TypeSystem.AmbiguousFunctionLookupException.candidates()
           
 

Methods in edu.rice.cs.dynamicjava.symbol with parameters of type Function
static boolean SymbolUtil.isVararg(Function f)
          Test whether the function's last parameter has a VarargArrayType type.
static Iterable<Type> SymbolUtil.parameterTypes(Function f)
           
 String TypeSystem.TypePrinter.print(Function f)
          Produce a string representing the signature of the function
 

Constructor parameters in edu.rice.cs.dynamicjava.symbol with type arguments of type Function
TypeSystem.AmbiguousFunctionLookupException(Iterable<? extends Function> candidates)
           
TypeSystem.UnmatchedFunctionLookupException(Iterable<? extends Function> candidates)