Uses of Class
org.aspectj.apache.bcel.generic.ObjectType

Packages that use ObjectType
org.aspectj.apache.bcel.classfile   
org.aspectj.apache.bcel.classfile.annotation   
org.aspectj.apache.bcel.generic   
org.aspectj.weaver.bcel   
 

Uses of ObjectType in org.aspectj.apache.bcel.classfile
 

Methods in org.aspectj.apache.bcel.classfile with parameters of type ObjectType
 int ConstantPool.addClass(ObjectType type)
           
 

Uses of ObjectType in org.aspectj.apache.bcel.classfile.annotation
 

Constructors in org.aspectj.apache.bcel.classfile.annotation with parameters of type ObjectType
AnnotationGen(ObjectType type, java.util.List<NameValuePair> pairs, boolean runtimeVisible, ConstantPool cpool)
          Retrieve an immutable version of this AnnotationGen
ClassElementValue(ObjectType t, ConstantPool cpool)
           
EnumElementValue(ObjectType t, java.lang.String value, ConstantPool cpool)
           
 

Uses of ObjectType in org.aspectj.apache.bcel.generic
 

Fields in org.aspectj.apache.bcel.generic declared as ObjectType
static ObjectType Type.CLASS
           
static ObjectType Type.EXCEPTION
           
static ObjectType Type.INTEGER
           
static ObjectType Type.ITERATOR
           
static ObjectType Type.LIST
           
static ObjectType Type.OBJECT
           
static ObjectType Type.OBJECT_ARRAY
           
static ObjectType Type.STRING
           
static ObjectType Type.STRING_ARRAY
           
static ObjectType Type.STRINGBUFFER
           
static ObjectType Type.STRINGBUILDER
           
static ObjectType Type.THROWABLE
           
 

Methods in org.aspectj.apache.bcel.generic that return ObjectType
 ObjectType CodeExceptionGen.getCatchType()
          Gets the type of the Exception to catch, 'null' for ANY.
 ObjectType FieldOrMethod.getClassType(ConstantPool cpg)
           
 ObjectType MULTIANEWARRAY.getLoadClassType(ConstantPool cpg)
           
 ObjectType Instruction.getLoadClassType(ConstantPool cpg)
           
 ObjectType FieldOrMethod.getLoadClassType(ConstantPool cpg)
           
 

Methods in org.aspectj.apache.bcel.generic with parameters of type ObjectType
 boolean ObjectType.accessibleTo(ObjectType accessor)
          Java Virtual Machine Specification edition 2, § 5.4.4 Access Control
 CodeExceptionGen MethodGen.addExceptionHandler(InstructionHandle start_pc, InstructionHandle end_pc, InstructionHandle handler_pc, ObjectType catch_type)
          Add an exception handler, i.e., specify region where a handler is active and an instruction where the actual handling is done.
 Instruction InstructionFactory.createNew(ObjectType t)
           
static Instruction InstructionFactory.PUSH(ConstantPool cp, ObjectType t)
           
 void CodeExceptionGen.setCatchType(ObjectType catch_type)
          Sets the type of the Exception to catch.
 boolean ObjectType.subclassOf(ObjectType superclass)
           
 

Constructors in org.aspectj.apache.bcel.generic with parameters of type ObjectType
CodeExceptionGen(InstructionHandle start_pc, InstructionHandle end_pc, InstructionHandle handler_pc, ObjectType catch_type)
          Add an exception handler, i.e., specify region where a handler is active and an instruction where the actual handling is done.
 

Uses of ObjectType in org.aspectj.weaver.bcel
 

Fields in org.aspectj.weaver.bcel declared as ObjectType
static ObjectType LazyClassGen.enclosingStaticTjpType
           
static ObjectType LazyClassGen.proceedingTjpType
           
static ObjectType LazyClassGen.staticTjpType
           
static ObjectType LazyClassGen.tjpType
           
static ObjectType LazyClassGen.typeForAnnotation
           
 

Methods in org.aspectj.weaver.bcel with parameters of type ObjectType
 void LazyMethodGen.addExceptionHandler(InstructionHandle start, InstructionHandle end, InstructionHandle handlerStart, ObjectType catchType, boolean highPriority)