argparser
Class IntHolder

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

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

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

See Also:
Serialized Form

Field Summary
 int value
          Value of the integer, set and examined by the application as needed.
 
Constructor Summary
IntHolder()
          Constructs a new IntHolder with an initial value of 0.
IntHolder(int i)
          Constructs a new IntHolder 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 int value
Value of the integer, set and examined by the application as needed.

Constructor Detail

IntHolder

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


IntHolder

public IntHolder(int i)
Constructs a new IntHolder with a specific initial value.

Parameters:
i - Initial integer value.