| java.lang.Object argparser.CharHolder
CharHolder | public class CharHolder implements java.io.Serializable(Code) | | Wrapper class which ``holds'' a character value,
enabling methods to return character values through
arguments.
|
Field Summary | |
public char | value Value of the character, set and examined
by the application as needed. |
Constructor Summary | |
public | CharHolder() Constructs a new CharHolder with an initial
value of 0. | public | CharHolder(char c) Constructs a new CharHolder with a
specific initial value. |
value | public char value(Code) | | Value of the character, set and examined
by the application as needed.
|
CharHolder | public CharHolder()(Code) | | Constructs a new CharHolder with an initial
value of 0.
|
CharHolder | public CharHolder(char c)(Code) | | Constructs a new CharHolder with a
specific initial value.
Parameters: c - Initial character value. |
|
|