Uses of Class
gnu.bytecode.ObjectType

Packages that use ObjectType
gnu.bytecode Contains classes to generate, read, write, and print Java bytecode in the form of .class files. 
gnu.expr Supports Expression, and various related classes need to compile programming languages. 
gnu.kawa.lispexpr Support classes for compiling and running Lisp languages. 
gnu.kawa.reflect Contains classes to use reflection. 
gnu.kawa.xml Classes for using XML within Kawa. 
 

Uses of ObjectType in gnu.bytecode
 

Subclasses of ObjectType in gnu.bytecode
 class ArrayType
           
 class ClassType
           
 

Fields in gnu.bytecode declared as ObjectType
static ObjectType Type.nullType
          The magic type of null.
 

Methods in gnu.bytecode that return ObjectType
 ObjectType CpoolClass.getClassType()
          Get corresponding ObjectType (ClassType or ArrayType).
 

Methods in gnu.bytecode with parameters of type ObjectType
 CpoolClass ConstantPool.addClass(ObjectType otype)
           
 void CodeAttr.emitPushClass(ObjectType ctype)
          Push a class constant pool entry.
 

Uses of ObjectType in gnu.expr
 

Subclasses of ObjectType in gnu.expr
 class PairClassType
          A class type implemented as a pair of an interface and a class.
 

Methods in gnu.expr with parameters of type ObjectType
 void Compilation.loadClassRef(ObjectType clas)
          Generate code to load a named Class without initializing it.
 

Uses of ObjectType in gnu.kawa.lispexpr
 

Subclasses of ObjectType in gnu.kawa.lispexpr
 class LangObjType
           
 

Uses of ObjectType in gnu.kawa.reflect
 

Subclasses of ObjectType in gnu.kawa.reflect
 class OccurrenceType
          A type that matches some number of repetitions of a basetype.
 class SingletonType
           
 

Methods in gnu.kawa.reflect with parameters of type ObjectType
static MethodProc ClassMethods.apply(ObjectType dtype, java.lang.String mname, char mode, Language language)
          Find methods.
static PrimProcedure[] ClassMethods.getMethods(ObjectType dtype, java.lang.String mname, char mode, ClassType caller, Language language)
          Return the methods of a class with the specified name and flag.
protected  PrimProcedure[] Invoke.getMethods(ObjectType ctype, java.lang.String mname, ClassType caller)
           
static Member SlotGet.lookupMember(ObjectType clas, java.lang.String name, ClassType caller)
          Get a named property - field or 'get' accessor method.
static Member SlotSet.lookupMember(ObjectType clas, java.lang.String name, ClassType caller)
           
protected  MethodProc Invoke.lookupMethods(ObjectType dtype, java.lang.Object name)
           
 

Uses of ObjectType in gnu.kawa.xml
 

Subclasses of ObjectType in gnu.kawa.xml
 class AttributeType
          Matches an attribute name pattern.
 class ElementType
           
 class NodeSetType
           
 class NodeType
          A SeqPosition used to represent a node in (usually) a TreeList.
 class ProcessingInstructionType