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 ConstantUtf8 extends Constant {
00016 private String bytes;
00017
00018
00019
00020
00021 public ConstantUtf8(ConstantUtf8 c) {
00022 this(c.getBytes());
00023 }
00024
00025
00026
00027
00028
00029
00030 ConstantUtf8(DataInputStream file) throws IOException
00031 {
00032 super(CONSTANT_Utf8);
00033
00034 bytes = file.readUTF();
00035 }
00036
00037
00038
00039 public ConstantUtf8(String bytes)
00040 {
00041 super(CONSTANT_Utf8);
00042 this.bytes = bytes;
00043 }
00044
00045
00046
00047
00048
00049
00050
00051 public void accept(Visitor v) {
00052 v.visitConstantUtf8(this);
00053 }
00054
00055
00056
00057
00058
00059
00060 public final void dump(DataOutputStream file) throws IOException
00061 {
00062 file.writeByte(tag);
00063 file.writeUTF(bytes);
00064 }
00065
00066
00067
00068 public final String getBytes() { return bytes; }
00069
00070
00071
00072 public final void setBytes(String bytes) {
00073 this.bytes = bytes;
00074 }
00075
00076
00077
00078 public final String toString()
00079 {
00080 return super.toString() + "(\"" + Utility.replace(bytes, "\n", "\\n") + "\")";
00081 }
00082 }