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