argparser
Class LongHolder

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

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

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

See Also:
Serialized Form

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

Constructor Detail

LongHolder

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


LongHolder

public LongHolder(long l)
Constructs a new LongHolder with a specific initial value.

Parameters:
l - Initial long value.