--- old/src/share/classes/javax/sql/RowSet.java 2014-08-07 18:10:17.000000000 -0400 +++ new/src/share/classes/javax/sql/RowSet.java 2014-08-07 18:10:17.000000000 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -727,7 +727,7 @@ /** * Sets the designated parameter in this RowSet object's command - * to the given java.math.BigDeciaml value. + * to the given {@code java.math.BigDecimal} value. * The driver converts this to * an SQL NUMERIC value before sending it to the database. * @@ -1216,7 +1216,7 @@ * value of the corresponding SQL type. * * - *

Note that this method may be used to pass datatabase-specific + *

Note that this method may be used to pass database-specific * abstract data types. * * @param parameterIndex the first parameter is 1, the second is 2, ... @@ -1255,7 +1255,7 @@ * or Array, the driver should pass it to the database as a * value of the corresponding SQL type. *

- * Note that this method may be used to pass datatabase- + * Note that this method may be used to pass database- * specific abstract data types. * * @param parameterName the name of the parameter @@ -1335,7 +1335,7 @@ * will be converted to the corresponding SQL type before being * sent to the database. * - *

Note that this method may be used to pass datatabase- + *

Note that this method may be used to pass database- * specific abstract data types, by using a driver-specific Java * type. * @@ -1373,7 +1373,7 @@ * given Java object to its standard SQL mapping before sending it * to the database. * - *

Note that this method may be used to pass datatabase-specific + *

Note that this method may be used to pass database-specific * abstract data types by using a driver-specific Java type. * * If the object is of a class implementing SQLData, @@ -1420,7 +1420,7 @@ void setBlob (int i, Blob x) throws SQLException; /** - * Sets the designated parameter to a InputStream object. The inputstream must contain the number + * Sets the designated parameter to a InputStream object. The InputStream must contain the number * of characters specified by length otherwise a SQLException will be * generated when the PreparedStatement is executed. * This method differs from the setBinaryStream (int, InputStream, int) @@ -1437,7 +1437,7 @@ * this method is called on a closed PreparedStatement, * if parameterIndex does not correspond * to a parameter marker in the SQL statement, if the length specified - * is less than zero or if the number of bytes in the inputstream does not match + * is less than zero or if the number of bytes in the InputStream does not match * the specified length. * @throws SQLFeatureNotSupportedException if the JDBC driver does not support this method * @@ -1474,7 +1474,8 @@ throws SQLException; /** - * Sets the designated parameter to a InputStream object. The inputstream must contain the number + * Sets the designated parameter to a InputStream object. + * The inputstream must contain the number * of characters specified by length, otherwise a SQLException will be * generated when the CallableStatement is executed. * This method differs from the setBinaryStream (int, InputStream, int) @@ -1491,7 +1492,7 @@ * @param length the number of bytes in the parameter data. * @throws SQLException if parameterIndex does not correspond * to a parameter marker in the SQL statement, or if the length specified - * is less than zero; if the number of bytes in the inputstream does not match + * is less than zero; if the number of bytes in the InputStream does not match * the specified length; if a database access error occurs or * this method is called on a closed CallableStatement * @exception SQLFeatureNotSupportedException if the JDBC driver does not support @@ -1554,7 +1555,8 @@ void setClob (int i, Clob x) throws SQLException; /** - * Sets the designated parameter to a Reader object. The reader must contain the number + * Sets the designated parameter to a Reader object. + * The reader must contain the number * of characters specified by length otherwise a SQLException will be * generated when the PreparedStatement is executed. *This method differs from the setCharacterStream (int, Reader, int) method @@ -2055,7 +2057,8 @@ void setNClob(String parameterName, NClob value) throws SQLException; /** - * Sets the designated parameter to a Reader object. The reader must contain the number + * Sets the designated parameter to a Reader object. + * The reader must contain the number * of characters specified by length otherwise a SQLException will be * generated when the CallableStatement is executed. * This method differs from the setCharacterStream (int, Reader, int) method @@ -2105,7 +2108,8 @@ throws SQLException; /** - * Sets the designated parameter to a Reader object. The reader must contain the number + * Sets the designated parameter to a Reader object. + * The reader must contain the number * of characters specified by length otherwise a SQLException will be * generated when the PreparedStatement is executed. * This method differs from the setCharacterStream (int, Reader, int) method