00001 package de.fub.bytecode.generic;
00002
00003 import java.io.IOException;
00004 import de.fub.bytecode.util.ByteSequence;
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 public class LDC_W extends LDC {
00015
00016
00017
00018
00019 LDC_W() {}
00020 public LDC_W(int index) {
00021 super(index);
00022 }
00023
00024
00025
00026 protected void initFromFile(ByteSequence bytes, boolean wide)
00027 throws IOException
00028 {
00029 setIndex(bytes.readUnsignedShort());
00030 length = 3;
00031 }
00032 }