summaryrefslogtreecommitdiff
path: root/java/src/Ice/BooleanHolder.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/Ice/BooleanHolder.java')
-rw-r--r--java/src/Ice/BooleanHolder.java14
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;
}