1 30 31 package oracle.toplink.libraries.asm.tree; 32 33 import oracle.toplink.libraries.asm.CodeVisitor; 34 35 40 41 public class IntInsnNode extends AbstractInsnNode { 42 43 46 47 public int operand; 48 49 56 57 public IntInsnNode (final int opcode, final int operand) { 58 super(opcode); 59 this.operand = operand; 60 } 61 62 68 69 public void setOpcode (final int opcode) { 70 this.opcode = opcode; 71 } 72 73 public void accept (final CodeVisitor cv) { 74 cv.visitIntInsn(opcode, operand); 75 } 76 } 77 | Popular Tags |