1 17 package org.apache.bcel.generic; 18 19 27 public class DCMPG extends Instruction implements TypedInstruction, StackProducer, StackConsumer { 28 29 public DCMPG() { 30 super(org.apache.bcel.Constants.DCMPG, (short) 1); 31 } 32 33 34 36 public Type getType( ConstantPoolGen cp ) { 37 return Type.DOUBLE; 38 } 39 40 41 49 public void accept( Visitor v ) { 50 v.visitTypedInstruction(this); 51 v.visitStackProducer(this); 52 v.visitStackConsumer(this); 53 v.visitDCMPG(this); 54 } 55 } 56 | Popular Tags |