1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class IASTORE extends ArrayInstruction implements StackConsumer { 65 68 public IASTORE() { 69 super(com.sun.org.apache.bcel.internal.Constants.IASTORE); 70 } 71 72 73 81 public void accept(Visitor v) { 82 v.visitStackConsumer(this); 83 v.visitExceptionThrower(this); 84 v.visitTypedInstruction(this); 85 v.visitArrayInstruction(this); 86 v.visitIASTORE(this); 87 } 88 } 89 | Popular Tags |