1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 import java.io.IOException ; 57 import com.sun.org.apache.bcel.internal.util.ByteSequence; 58 59 67 public class LDC_W extends LDC { 68 72 LDC_W() {} 73 74 public LDC_W(int index) { 75 super(index); 76 } 77 78 81 protected void initFromFile(ByteSequence bytes, boolean wide) 82 throws IOException  83 { 84 setIndex(bytes.readUnsignedShort()); 85 length = 3; 86 } 87 } 88 | Popular Tags |