Uses of Class
org.apache.bcel.generic.ObjectType
-
Packages that use ObjectType Package Description org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions.org.apache.bcel.verifier.statics Provides PassVerifier classes used internally by JustIce.org.apache.bcel.verifier.structurals Provides a PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect. -
-
Uses of ObjectType in org.apache.bcel.generic
Fields in org.apache.bcel.generic declared as ObjectType Modifier and Type Field Description private ObjectTypeCodeExceptionGen. catch_typestatic ObjectTypeType. CLASSstatic ObjectTypeType. OBJECTstatic ObjectTypeType. STRINGstatic ObjectTypeType. STRINGBUFFERstatic ObjectTypeType. THROWABLEMethods in org.apache.bcel.generic that return ObjectType Modifier and Type Method Description ObjectTypeCodeExceptionGen. getCatchType()Gets the type of the Exception to catch, 'null' for ANY.ObjectTypeFieldOrMethod. getClassType(ConstantPoolGen cpg)Deprecated.If the instruction references an array class, the ObjectType returned will be invalid.static ObjectTypeObjectType. getInstance(java.lang.String class_name)ObjectTypeANEWARRAY. getLoadClassType(ConstantPoolGen cpg)ObjectTypeCHECKCAST. getLoadClassType(ConstantPoolGen cpg)ObjectTypeFieldOrMethod. getLoadClassType(ConstantPoolGen cpg)Gets the ObjectType of the method return or field.ObjectTypeINSTANCEOF. getLoadClassType(ConstantPoolGen cpg)ObjectTypeLoadClass. getLoadClassType(ConstantPoolGen cpg)Returns the ObjectType of the referenced class or interface that may be loaded and resolved.ObjectTypeMULTIANEWARRAY. getLoadClassType(ConstantPoolGen cpg)ObjectTypeNEW. getLoadClassType(ConstantPoolGen cpg)Methods in org.apache.bcel.generic with parameters of type ObjectType Modifier and Type Method Description booleanObjectType. accessibleTo(ObjectType accessor)Java Virtual Machine Specification edition 2, � 5.4.4 Access ControlintConstantPoolGen. addClass(ObjectType type)Add a new Class reference to the ConstantPool for a given type.CodeExceptionGenMethodGen. 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.NEWInstructionFactory. createNew(ObjectType t)voidCodeExceptionGen. setCatchType(ObjectType catch_type)Sets the type of the Exception to catch.booleanObjectType. subclassOf(ObjectType superclass)Return true if this type is a subclass of given ObjectType.Constructors in org.apache.bcel.generic with parameters of type ObjectType Constructor Description AnnotationEntryGen(ObjectType type, java.util.List<ElementValuePairGen> elements, boolean vis, ConstantPoolGen cpool)ClassElementValueGen(ObjectType t, ConstantPoolGen cpool)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.EnumElementValueGen(ObjectType t, java.lang.String value, ConstantPoolGen cpool)PUSH(ConstantPoolGen cp, ObjectType value) -
Uses of ObjectType in org.apache.bcel.verifier.statics
Methods in org.apache.bcel.verifier.statics that return ObjectType Modifier and Type Method Description private ObjectTypePass3aVerifier.InstOperandConstraintVisitor. getObjectType(FieldInstruction o) -
Uses of ObjectType in org.apache.bcel.verifier.structurals
Fields in org.apache.bcel.verifier.structurals declared as ObjectType Modifier and Type Field Description private ObjectTypeExceptionHandler. catchtypeThe type of the exception to catch.private static ObjectTypeInstConstraintVisitor. GENERIC_ARRAYprivate ObjectTypeUninitializedObjectType. initializedThe "initialized" version.Methods in org.apache.bcel.verifier.structurals that return ObjectType Modifier and Type Method Description ObjectTypeExceptionHandler. getExceptionType()Returns the type of the exception that's handled.ObjectTypeUninitializedObjectType. getInitialized()Returns the ObjectType of the same class as the one of the uninitialized object represented by this UninitializedObjectType instance.private ObjectTypeInstConstraintVisitor. getObjectType(FieldInstruction o)Constructors in org.apache.bcel.verifier.structurals with parameters of type ObjectType Constructor Description ExceptionHandler(ObjectType catch_type, InstructionHandle handler_pc)Leave instance creation to JustIce.OperandStack(int maxStack, ObjectType obj)Creates an otherwise empty stack with a maximum of maxStack slots and the ObjectType 'obj' at the top.UninitializedObjectType(ObjectType t)Creates a new instance.
-