1 17 package org.apache.bcel.generic; 18 19 26 public class LSTORE extends StoreInstruction { 27 28 32 LSTORE() { 33 super(org.apache.bcel.Constants.LSTORE, org.apache.bcel.Constants.LSTORE_0); 34 } 35 36 37 public LSTORE(int n) { 38 super(org.apache.bcel.Constants.LSTORE, org.apache.bcel.Constants.LSTORE_0, n); 39 } 40 41 42 50 public void accept( Visitor v ) { 51 super.accept(v); 52 v.visitLSTORE(this); 53 } 54 } 55 | Popular Tags |