Uses of Class
edu.rice.cs.dynamicjava.symbol.TypeSystem.InvalidTypeArgumentException

Packages that use TypeSystem.InvalidTypeArgumentException
edu.rice.cs.dynamicjava.symbol   
 

Uses of TypeSystem.InvalidTypeArgumentException in edu.rice.cs.dynamicjava.symbol
 

Methods in edu.rice.cs.dynamicjava.symbol that throw TypeSystem.InvalidTypeArgumentException
abstract  ClassType TypeSystem.lookupClass(Expression object, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
          Lookup the class with the given name in the given object.
 ClassType StandardTypeSystem.lookupClass(Expression object, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
           
abstract  ClassType TypeSystem.lookupClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
          Lookup the class with the given name in the given type.
 ClassType StandardTypeSystem.lookupClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
           
abstract  TypeSystem.ConstructorInvocation TypeSystem.lookupConstructor(Type t, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the constructor corresponding the the given invocation.
 TypeSystem.ConstructorInvocation StandardTypeSystem.lookupConstructor(Type t, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the constructor corresponding the the given invocation.
abstract  TypeSystem.ObjectMethodInvocation TypeSystem.lookupMethod(Expression object, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the method corresponding the the given invocation.
 TypeSystem.ObjectMethodInvocation StandardTypeSystem.lookupMethod(Expression object, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
           
abstract  ClassType TypeSystem.lookupStaticClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
          Lookup the static class with the given name.
 ClassType StandardTypeSystem.lookupStaticClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
           
abstract  TypeSystem.StaticMethodInvocation TypeSystem.lookupStaticMethod(Type t, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the static method corresponding the the given invocation.
 TypeSystem.StaticMethodInvocation StandardTypeSystem.lookupStaticMethod(Type t, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
           
abstract  ClassType TypeSystem.makeClassType(DJClass c, Iterable<? extends Type> args)
          Create a SimpleClassType, RawClassType, or ParameterizedClassType corresponding to the given class with given type arguments.
 ClassType StandardTypeSystem.makeClassType(DJClass c, Iterable<? extends Type> args)
          Create a SimpleClassType, RawClassType, or ParameterizedClassType corresponding to the given class with given type arguments.