Uses of Class
org.apache.jdo.impl.enhancer.classfile.ConstClass

Packages that use ConstClass
org.apache.jdo.impl.enhancer.classfile   
org.apache.jdo.impl.enhancer.core   
 

Uses of ConstClass in org.apache.jdo.impl.enhancer.classfile
 

Fields in org.apache.jdo.impl.enhancer.classfile declared as ConstClass
protected  ConstClass ConstBasicMemberRef.theClassName
           
private  ConstClass ClassFile.thisClassName
           
private  ConstClass ClassFile.superClassName
           
private  ConstClass ExceptionRange.excCatchType
           
private  ConstClass[] InterfaceArraySorter.theArray
           
private  ConstClass InsnMultiDimArrayNew.classOp
           
 

Methods in org.apache.jdo.impl.enhancer.classfile that return ConstClass
 ConstClass ConstantPool.addClass(java.lang.String className)
          Find or create a class constant in the pool
(package private) static ConstClass ConstClass.read(java.io.DataInputStream input)
           
 ConstClass ConstBasicMemberRef.className()
          Return the name of the class defining the member
 ConstClass ClassFile.className()
          Return the name of the class
 ConstClass ClassFile.superName()
          Return the name of the super class
 ConstClass ExceptionRange.catchType()
          return the exception specification a null return value means a catch of any (try/finally)
 ConstClass InsnMultiDimArrayNew.arrayClass()
          Return the array class being created
 

Methods in org.apache.jdo.impl.enhancer.classfile with parameters of type ConstClass
 void ClassFile.setSuperName(ConstClass superCl)
          Set the name of the super class
 void ClassFile.addInterface(ConstClass iface)
          Add an interface to the list of the interfaces which the class implements
 void InsnMultiDimArrayNew.setArrayClass(ConstClass classOp)
          Sets the array class being created
 

Constructors in org.apache.jdo.impl.enhancer.classfile with parameters of type ConstClass
ConstFieldRef(ConstClass cname, ConstNameAndType NT)
           
ConstBasicMemberRef(ConstClass cname, ConstNameAndType NT)
          Constructor for "from scratch" creation
ConstMethodRef(ConstClass cname, ConstNameAndType NT)
           
ConstInterfaceMethodRef(ConstClass cname, ConstNameAndType NT)
           
ExceptionRange(InsnTarget startPC, InsnTarget endPC, InsnTarget handlerPC, ConstClass catchType)
          constructor
ExceptionsAttribute(ConstUtf8 attrName, ConstClass exc)
          Convenience Constructor - for single exception
InterfaceArraySorter(ConstClass[] interfaces)
           
InsnMultiDimArrayNew(ConstClass classOp, int nDimsOp)
          Constructor for opc_multianewarray.
InsnMultiDimArrayNew(ConstClass classOp, int nDimsOp, int offset)
           
 

Uses of ConstClass in org.apache.jdo.impl.enhancer.core
 

Methods in org.apache.jdo.impl.enhancer.core with parameters of type ConstClass
private  Insn Builder.appendCheckVarInstanceOf(Insn insn, int argStart, ConstClass constClass, java.lang.String exceptionName, java.lang.String exceptionText)
          Adds the code for handling if an argument is instance of a class.