argparser
Class StringHolder

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

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

Wrapper class which ``holds'' a String reference, enabling methods to return String references through arguments.

See Also:
Serialized Form

Field Summary
 java.lang.String value
          Value of the String reference, set and examined by the application as needed.
 
Constructor Summary
StringHolder()
          Constructs a new StringHolder with an initial value of null.
StringHolder(java.lang.String s)
          Constructs a new StringHolder 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 java.lang.String value
Value of the String reference, set and examined by the application as needed.

Constructor Detail

StringHolder

public StringHolder()
Constructs a new StringHolder with an initial value of null.


StringHolder

public StringHolder(java.lang.String s)
Constructs a new StringHolder with a specific initial value.

Parameters:
s - Initial String reference.