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/BooleanHolder.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/BooleanHolder.java')
-rw-r--r-- | java/src/Ice/BooleanHolder.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/java/src/Ice/BooleanHolder.java b/java/src/Ice/BooleanHolder.java index 5dabc667b4d..4c7e069858d 100644 --- a/java/src/Ice/BooleanHolder.java +++ b/java/src/Ice/BooleanHolder.java @@ -9,18 +9,32 @@ package Ice; +/** + * Holder class for booleans that are in- or inout-parameters. + **/ public final class BooleanHolder { + /** + * Instantiates the class with the value <code>false</code>. + **/ public BooleanHolder() { } + /** + * Instantiates the class with the passed value. + * + * @param value The <code>boolean</code> value stored by this holder. + **/ public BooleanHolder(boolean value) { this.value = value; } + /** + * The <code>boolean</code> value stored by this holder. + **/ public boolean value; } |