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