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