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