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