diff options
Diffstat (limited to 'java/src/Ice/Holder.java')
-rw-r--r-- | java/src/Ice/Holder.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/java/src/Ice/Holder.java b/java/src/Ice/Holder.java index bdd4cd86811..2c5d75bab7c 100644 --- a/java/src/Ice/Holder.java +++ b/java/src/Ice/Holder.java @@ -9,18 +9,32 @@ package Ice; +/** + * Generic holder class for values that are in- or in-out parameters. + **/ public final class Holder<T> { + /** + * Instantiates the class with the default-initialized value of type <code>T</code>. + **/ public Holder() { } + /** + * Instantiates the class with the passed value. + * + * @param value The value stored by this holder. + **/ public Holder(T value) { this.value = value; } + /** + * The <code>T</code> value stored by this holder. + **/ public T value; } |