1 17 package org.apache.bcel.generic; 18 19 26 public class ISTORE extends StoreInstruction { 27 28 32 ISTORE() { 33 super(org.apache.bcel.Constants.ISTORE, org.apache.bcel.Constants.ISTORE_0); 34 } 35 36 37 40 public ISTORE(int n) { 41 super(org.apache.bcel.Constants.ISTORE, org.apache.bcel.Constants.ISTORE_0, n); 42 } 43 44 45 53 public void accept( Visitor v ) { 54 super.accept(v); 55 v.visitISTORE(this); 56 } 57 } 58 | Popular Tags |