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