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

Packages that use DJMethod
edu.rice.cs.dynamicjava.symbol   
koala.dynamicjava.interpreter Contains the classes for interpreting Java language statements. 
 

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

Classes in edu.rice.cs.dynamicjava.symbol that implement DJMethod
 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.JavaMethod
           
 class SpecialMethod
          Abstract parent for special implicit methods.
 

Methods in edu.rice.cs.dynamicjava.symbol that return DJMethod
 DJMethod JavaClass.JavaMethod.declaredSignature()
           
 DJMethod DJMethod.declaredSignature()
          Get the original declared method (prior to any substitutions, etc).
 DJMethod SpecialMethod.declaredSignature()
           
 DJMethod TypeSystem.MethodInvocation.method()
           
 

Methods in edu.rice.cs.dynamicjava.symbol that return types with arguments of type DJMethod
 Iterable<DJMethod> JavaClass.declaredMethods()
           
 Iterable<DJMethod> DJClass.declaredMethods()
           
 Iterable<DJMethod> TreeClass.declaredMethods()
           
 Iterable<DJMethod> Java5Class.declaredMethods()
           
 Iterable<DJMethod> FunctionWrapperClass.declaredMethods()
           
 

Constructors in edu.rice.cs.dynamicjava.symbol with parameters of type DJMethod
TypeSystem.MethodInvocation(DJMethod method, Type returnType, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Iterable<? extends Type> thrown)
           
TypeSystem.ObjectMethodInvocation(DJMethod method, Type returnType, Expression object, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Iterable<? extends Type> thrown)
           
TypeSystem.StaticMethodInvocation(DJMethod method, Type returnType, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Iterable<? extends Type> thrown)
           
 

Uses of DJMethod in koala.dynamicjava.interpreter
 

Methods in koala.dynamicjava.interpreter that return DJMethod
static DJMethod NodeProperties.getMethod(Node n)
           
static DJMethod NodeProperties.setMethod(Node n, DJMethod m)
           
 

Methods in koala.dynamicjava.interpreter with parameters of type DJMethod
static DJMethod NodeProperties.setMethod(Node n, DJMethod m)