argparser
Class CharHolder

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

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

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

See Also:
Serialized Form

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

Constructor Detail

CharHolder

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


CharHolder

public CharHolder(char c)
Constructs a new CharHolder with a specific initial value.

Parameters:
c - Initial character value.