TypeInsnNodepublic class TypeInsnNode extends AbstractInsnNode A node that represents a type instruction. A type instruction is an
instruction that takes a type descriptor as parameter. |
Fields Summary |
---|
public String | descThe operand of this instruction. This operand is a type descriptor (see
{@link oracle.toplink.libraries.asm.Type Type}). |
Constructors Summary |
---|
public TypeInsnNode(int opcode, String desc)Constructs a new {@link TypeInsnNode TypeInsnNode} object.
super(opcode);
this.desc = desc;
|
|