View Javadoc
1 package jrre.classloader.classfile.pool_entries; 2 3 public class CPFloat extends CPInfo{ 4 5 private float value; 6 7 public CPFloat(float value){ 8 this.value = value; 9 } 10 11 /*** 12 * Gets the Value. 13 */ 14 public float getValue(){ 15 return this.value; 16 } 17 18 /*** 19 * Sets the Value. 20 * @param Value The value to set it to. 21 */ 22 public void setValue(float value){ 23 this.value = value; 24 } 25 26 public String toString(){ 27 return "CPFloat: value = " + Float.toString(value); 28 } 29 30 }

This page was automatically generated by Maven