1 17 package org.apache.bcel.generic; 18 19 import java.io.IOException ; 20 import org.apache.bcel.util.ByteSequence; 21 22 30 public class LDC_W extends LDC { 31 32 36 LDC_W() { 37 } 38 39 40 public LDC_W(int index) { 41 super(index); 42 } 43 44 45 48 protected void initFromFile( ByteSequence bytes, boolean wide ) throws IOException { 49 setIndex(bytes.readUnsignedShort()); 50 opcode = org.apache.bcel.Constants.LDC_W; 52 length = 3; 53 } 54 } 55 | Popular Tags |