1 17 package org.apache.bcel.generic; 18 19 27 public class DREM extends ArithmeticInstruction { 28 29 31 public DREM() { 32 super(org.apache.bcel.Constants.DREM); 33 } 34 35 36 44 public void accept( Visitor v ) { 45 v.visitTypedInstruction(this); 46 v.visitStackProducer(this); 47 v.visitStackConsumer(this); 48 v.visitArithmeticInstruction(this); 49 v.visitDREM(this); 50 } 51 } 52 | Popular Tags |