diff options
Diffstat (limited to 'java/src/Ice/IntHolder.java')
-rw-r--r-- | java/src/Ice/IntHolder.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/java/src/Ice/IntHolder.java b/java/src/Ice/IntHolder.java index 6a0a9d356fb..ee9122c465d 100644 --- a/java/src/Ice/IntHolder.java +++ b/java/src/Ice/IntHolder.java @@ -9,18 +9,32 @@ package Ice; +/** + * Holder class for integers that are in- or inout-parameters. + **/ public final class IntHolder { + /** + * Instantiates the class with the value zero. + **/ public IntHolder() { } + /** + * Instantiates the class with the passed value. + * + * The <code>int</code> value for this holder. + **/ public IntHolder(int value) { this.value = value; } + /** + * The <code>int</code> value stored by this holder. + **/ public int value; } |