argparser
Class FloatHolder

java.lang.Object
  extended byargparser.FloatHolder
All Implemented Interfaces:
java.io.Serializable

public class FloatHolder
extends java.lang.Object
implements java.io.Serializable

Wrapper class which ``holds'' a float value, enabling methods to return float values through arguments.

See Also:
Serialized Form

Field Summary
 float value
          Value of the float, set and examined by the application as needed.
 
Constructor Summary
FloatHolder()
          Constructs a new FloatHolder with an initial value of 0.
FloatHolder(float f)
          Constructs a new FloatHolder with a specific initial value.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

public float value
Value of the float, set and examined by the application as needed.

Constructor Detail

FloatHolder

public FloatHolder()
Constructs a new FloatHolder with an initial value of 0.


FloatHolder

public FloatHolder(float f)
Constructs a new FloatHolder with a specific initial value.

Parameters:
f - Initial float value.