Update of /cvsroot/sblim/jsr48-client/src/javax/cim
In directory vz-cvs-3.sog:/tmp/cvs-serv24076/src/javax/cim
Modified Files:
Tag: Experimental
CIMDataType.java
Log Message:
3517503 - Missing parm in CIMDataType ctor javadoc
Index: CIMDataType.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/javax/cim/CIMDataType.java,v
retrieving revision 1.5.2.14
retrieving revision 1.5.2.15
diff -u -d -r1.5.2.14 -r1.5.2.15
--- CIMDataType.java 31 Mar 2012 15:39:42 -0000 1.5.2.14
+++ CIMDataType.java 13 Apr 2012 15:06:32 -0000 1.5.2.15
@@ -23,6 +23,7 @@
* 3004779 2010-06-16 blaschke-oss TCK: CIMDataType not throwing IllegalArgumentException
* 3513353 2012-03-30 blaschke-oss TCK: CIMDataType arrays must have length >= 1
* 3513349 2012-03-31 blaschke-oss TCK: CIMDataType must not accept null string
+ * 3517503 2012-04-13 blaschke-oss Missing parm in CIMDataType ctor javadoc
*/
package javax.cim;
@@ -512,6 +513,9 @@
*
* @param pType
* The data type as defined in the CIM class.
+ * @param pIsArray
+ * <code>true</code> if data type is unbounded array,
+ * <code>false</code> if data type is scalar.
* @throws IllegalArgumentException
*/
private CIMDataType(int pType, boolean pIsArray) throws IllegalArgumentException {
|