1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 65 public class DCMPG extends Instruction 66 implements TypedInstruction, StackProducer, StackConsumer { 67 68 public DCMPG() { 69 super(com.sun.org.apache.bcel.internal.Constants.DCMPG, (short)1); 70 } 71 72 74 public Type getType(ConstantPoolGen cp) { 75 return Type.DOUBLE; 76 } 77 78 79 87 public void accept(Visitor v) { 88 v.visitTypedInstruction(this); 89 v.visitStackProducer(this); 90 v.visitStackConsumer(this); 91 v.visitDCMPG(this); 92 } 93 } 94 | Popular Tags |