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