Empty constructor needed for the Class.newInstance() statement in Instruction.readInstruction(). Not to be used otherwise.
paramindex to constant pool super(opcode, index);
super(opcode, index);
returnname of referenced field. return getName(cpg);
return getName(cpg);
returnsize of field (1 or 2) return getType(cpg).getSize();
return getType(cpg).getSize();
returntype of field return Type.getType(getSignature(cpg));
return Type.getType(getSignature(cpg));
returnreturn type of referenced field return getFieldType(cpg);
return getFieldType(cpg);
returnmnemonic for instruction with symbolic references resolved return com.sun.org.apache.bcel.internal.Constants.OPCODE_NAMES[opcode] + " " + cp.constantToString(index, com.sun.org.apache.bcel.internal.Constants.CONSTANT_Fieldref);
return com.sun.org.apache.bcel.internal.Constants.OPCODE_NAMES[opcode] + " " + cp.constantToString(index, com.sun.org.apache.bcel.internal.Constants.CONSTANT_Fieldref);