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