Package org.apache.bcel.generic
Class FieldOrMethod
- java.lang.Object
-
- org.apache.bcel.generic.Instruction
-
- org.apache.bcel.generic.CPInstruction
-
- org.apache.bcel.generic.FieldOrMethod
-
- All Implemented Interfaces:
java.lang.Cloneable,IndexedInstruction,LoadClass,TypedInstruction
- Direct Known Subclasses:
FieldInstruction,InvokeInstruction
public abstract class FieldOrMethod extends CPInstruction implements LoadClass
Super class for InvokeInstruction and FieldInstruction, since they have some methods in common!
-
-
Field Summary
-
Fields inherited from class org.apache.bcel.generic.CPInstruction
index
-
Fields inherited from class org.apache.bcel.generic.Instruction
EMPTY_ARRAY, length, opcode
-
-
Constructor Summary
Constructors Modifier Constructor Description (package private)FieldOrMethod()Empty constructor needed for Instruction.readInstruction.protectedFieldOrMethod(short opcode, int index)Constructs a FieldOrMethod.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetClassName(ConstantPoolGen cpg)Deprecated.If the instruction references an array class, this method will return "java.lang.Object".ObjectTypegetClassType(ConstantPoolGen cpg)Deprecated.If the instruction references an array class, the ObjectType returned will be invalid.ObjectTypegetLoadClassType(ConstantPoolGen cpg)Gets the ObjectType of the method return or field.java.lang.StringgetName(ConstantPoolGen cpg)Gets the name of referenced method or field.ReferenceTypegetReferenceType(ConstantPoolGen cpg)Gets the reference type representing the class, interface, or array class referenced by the instruction.java.lang.StringgetSignature(ConstantPoolGen cpg)Gets the signature of referenced method or field.-
Methods inherited from class org.apache.bcel.generic.CPInstruction
dump, getIndex, getType, initFromFile, setIndex, toString, toString
-
Methods inherited from class org.apache.bcel.generic.Instruction
accept, consumeStack, copy, dispose, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, setLength, setOpcode, toString
-
-
-
-
Method Detail
-
getClassName
@Deprecated public java.lang.String getClassName(ConstantPoolGen cpg)
Deprecated.If the instruction references an array class, this method will return "java.lang.Object". For code generated by Java 1.5, this answer is sometimes wrong (for example, if the "clone()" method is called on an array). A better idea is to use thegetReferenceType(ConstantPoolGen)method, which correctly distinguishes between class types and array types.Gets the name of the referenced class/interface.- Parameters:
cpg- the constant pool generator.- Returns:
- name of the referenced class/interface.
-
getClassType
@Deprecated public ObjectType getClassType(ConstantPoolGen cpg)
Deprecated.If the instruction references an array class, the ObjectType returned will be invalid. Use getReferenceType() instead.Gets the type of the referenced class/interface.- Parameters:
cpg- the constant pool generator.- Returns:
- type of the referenced class/interface.
-
getLoadClassType
public ObjectType getLoadClassType(ConstantPoolGen cpg)
Gets the ObjectType of the method return or field.- Specified by:
getLoadClassTypein interfaceLoadClass- Parameters:
cpg- the constant pool generator.- Returns:
- type of the referenced class/interface.
- Throws:
ClassGenException- when the field is (or method returns) an array.
-
getName
public java.lang.String getName(ConstantPoolGen cpg)
Gets the name of referenced method or field.- Parameters:
cpg- the constant pool generator.- Returns:
- name of referenced method/field.
-
getReferenceType
public ReferenceType getReferenceType(ConstantPoolGen cpg)
Gets the reference type representing the class, interface, or array class referenced by the instruction.- Parameters:
cpg- the ConstantPoolGen used to create the instruction.- Returns:
- an ObjectType (if the referenced class type is a class or interface), or an ArrayType (if the referenced class type is an array class)
-
getSignature
public java.lang.String getSignature(ConstantPoolGen cpg)
Gets the signature of referenced method or field.- Parameters:
cpg- the constant pool generator.- Returns:
- signature of referenced method/field.
-
-