Package org.apache.bcel.generic
Class NameSignatureInstruction
- java.lang.Object
 - 
- org.apache.bcel.generic.Instruction
 - 
- org.apache.bcel.generic.CPInstruction
 - 
- org.apache.bcel.generic.NameSignatureInstruction
 
 
 
 
- 
- All Implemented Interfaces:
 java.lang.Cloneable,IndexedInstruction,TypedInstruction
public abstract class NameSignatureInstruction extends CPInstruction
Super class for FieldOrMethod and INVOKEDYNAMIC, since they both have names and signatures- Since:
 - 6.0
 
 
- 
- 
Field Summary
- 
Fields inherited from class org.apache.bcel.generic.CPInstruction
index 
- 
Fields inherited from class org.apache.bcel.generic.Instruction
length, opcode 
 - 
 
- 
Constructor Summary
Constructors Constructor Description NameSignatureInstruction()NameSignatureInstruction(short opcode, int index) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName(ConstantPoolGen cpg)ConstantNameAndTypegetNameAndType(ConstantPoolGen cpg)java.lang.StringgetSignature(ConstantPoolGen cpg)- 
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, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getNameAndType
public ConstantNameAndType getNameAndType(ConstantPoolGen cpg)
 
- 
getSignature
public java.lang.String getSignature(ConstantPoolGen cpg)
- Returns:
 - signature of referenced method/field.
 
 
- 
getName
public java.lang.String getName(ConstantPoolGen cpg)
- Returns:
 - name of referenced method/field.
 
 
 - 
 
 -