aboutsummaryrefslogtreecommitdiffstats
path: root/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-07-09 11:07:50 +0200
committerBruce Yinhe <[email protected]>2014-07-09 11:07:50 +0200
commit68d2b742d4720c5edfee8e4465df3357ff2c18d2 (patch)
treec1677ad430ab32c3d04e9ca266dda5e8e590649f /lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java
parent94285675ec46fe935e10f34c706adc4a3b333e1d (diff)
parentb4a5bbca115693f222cdeb7ebc040dba354e0ad8 (diff)
downloadotp-68d2b742d4720c5edfee8e4465df3357ff2c18d2.tar.gz
otp-68d2b742d4720c5edfee8e4465df3357ff2c18d2.tar.bz2
otp-68d2b742d4720c5edfee8e4465df3357ff2c18d2.zip
Merge branch 'nox/fix-javadoc' into maint
OTP-12050 * nox/fix-javadoc: Fix a few javadoc errors
Diffstat (limited to 'lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java')
-rw-r--r--lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java16
1 files changed, 12 insertions, 4 deletions
diff --git a/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java b/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java
index 03c18e55a2..0254edd5da 100644
--- a/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java
+++ b/lib/jinterface/java_src/com/ericsson/otp/erlang/OtpErlangMap.java
@@ -58,15 +58,23 @@ public class OtpErlangMap extends OtpErlangObject implements Serializable,
/**
* Create a map from an array of terms.
*
- * @param elems
+ * @param keys
* the array of terms to create the map from.
- * @param start
- * the offset of the first term to insert.
+ * @param kstart
+ * the offset of the first key to insert.
+ * @param kcount
+ * the number of keys to insert.
+ * @param values
+ * the array of values to create the map from.
+ * @param vstart
+ * the offset of the first value to insert.
* @param vcount
- * the number of terms to insert.
+ * the number of values to insert.
*
* @exception java.lang.IllegalArgumentException
* if any array is empty (null) or contains null elements.
+ * @exception java.lang.IllegalArgumentException
+ * if kcount and vcount differ.
*/
public OtpErlangMap(final OtpErlangObject[] keys, final int kstart,
final int kcount, final OtpErlangObject[] values, final int vstart,