JumpInsnNodepublic class JumpInsnNode extends AbstractInsnNode A node that represents a jump instruction. A jump instruction is an
instruction that may jump to another instruction. |
Fields Summary |
---|
public Label | labelThe operand of this instruction. This operand is a label that designates
the instruction to which this instruction may jump. |
Constructors Summary |
---|
public JumpInsnNode(int opcode, Label label)Constructs a new {@link JumpInsnNode JumpInsnNode} object.
super(opcode);
this.label = label;
|
|