00001 package de.fub.bytecode.classfile;
00002
00003 import de.fub.bytecode.Constants;
00004 import java.io.*;
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 public final class ConstantString extends Constant {
00016 private int string_index;
00017
00018
00019
00020
00021 public ConstantString(int string_index)
00022 {
00023 super(CONSTANT_String);
00024 this.string_index = string_index;
00025 }
00026
00027
00028
00029 public ConstantString(ConstantString c) {
00030 this(c.getStringIndex());
00031 }
00032
00033
00034
00035
00036
00037
00038 ConstantString(DataInputStream file) throws IOException
00039 {
00040 this((int)file.readUnsignedShort());
00041 }
00042
00043
00044
00045
00046
00047
00048
00049 public void accept(Visitor v) {
00050 v.visitConstantString(this);
00051 }
00052
00053
00054
00055
00056
00057
00058 public final void dump(DataOutputStream file) throws IOException
00059 {
00060 file.writeByte(tag);
00061 file.writeShort(string_index);
00062 }
00063
00064
00065
00066 public final int getStringIndex() { return string_index; }
00067
00068
00069
00070 public final void setStringIndex(int string_index) {
00071 this.string_index = string_index;
00072 }
00073
00074
00075
00076 public final String toString()
00077 {
00078 return super.toString() + "(string_index = " + string_index + ")";
00079 }
00080 }