1 17 package org.apache.bcel.generic; 18 19 26 public class D2L extends ConversionInstruction { 27 28 30 public D2L() { 31 super(org.apache.bcel.Constants.D2L); 32 } 33 34 35 43 public void accept( Visitor v ) { 44 v.visitTypedInstruction(this); 45 v.visitStackProducer(this); 46 v.visitStackConsumer(this); 47 v.visitConversionInstruction(this); 48 v.visitD2L(this); 49 } 50 } 51 | Popular Tags |