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