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