summaryrefslogtreecommitdiff
path: root/java/src/Ice/ListHolder.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/Ice/ListHolder.java')
-rw-r--r--java/src/Ice/ListHolder.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/java/src/Ice/ListHolder.java b/java/src/Ice/ListHolder.java
index 17ebb98f39e..70d1ba46dd3 100644
--- a/java/src/Ice/ListHolder.java
+++ b/java/src/Ice/ListHolder.java
@@ -9,18 +9,32 @@
package Ice;
+/**
+ * Holder class for lists that are in- or inout-parameters.
+ **/
public final class ListHolder
{
+ /**
+ * Instantiates the class with a <code>null</code> <code>List</code>.
+ **/
public
ListHolder()
{
}
+ /**
+ * Instantiates the class with the passed <code>List</code>.
+ *
+ * @param value The <code>List</code> stored by this holder.
+ **/
public
ListHolder(java.util.List value)
{
this.value = value;
}
+ /**
+ * The <code>List</code> stored by this holder.
+ **/
public java.util.List value;
}