diff options
author | Michi Henning <michi@zeroc.com> | 2009-06-04 16:19:02 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-06-04 16:19:02 +1000 |
commit | 45a3f61401e8c6cccc841fa43a4b35f9f5a444a8 (patch) | |
tree | 2d328e013b11a6e3724256cb471f6827c94b6e7d /java/src/Ice/Holder.java | |
parent | Fixed BCC compile errors (diff) | |
download | ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.tar.bz2 ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.tar.xz ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.zip |
Lots of javadoc comments.
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; } |