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