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