src/share/classes/javax/sql/rowset/RowSetMetaDataImpl.java

Print this page

        

@@ -157,11 +157,11 @@
      *        must be between <code>1</code> and the number of columns
      *        in the rowset, inclusive
      * @param property <code>true</code> if the given column is
      *                 automatically incremented; <code>false</code>
      *                 otherwise
-     * @throws <code>SQLException</code> if a database access error occurs or
+     * @throws SQLException if a database access error occurs or
      *         the given index is out of bounds
      */
     public void setAutoIncrement(int columnIndex, boolean property) throws SQLException {
         checkColRange(columnIndex);
         colInfo[columnIndex].autoIncrement = property;

@@ -193,11 +193,11 @@
      *                    of columns in the rowset, inclusive
      * @param property <code>true</code> to indicate that a column
      *                 value can be used in a <code>WHERE</code> clause;
      *                 <code>false</code> otherwise
      *
-     * @throws <code>SQLException</code> if a database access error occurs or
+     * @throws SQLException if a database access error occurs or
      *         the given column number is out of bounds
      */
     public void setSearchable(int columnIndex, boolean property)
         throws SQLException {
         checkColRange(columnIndex);

@@ -210,11 +210,11 @@
      *
      * @param columnIndex the first column is 1, the second is 2, and so on;
      * must be between <code>1</code> and the number of columns,
      * inclusive between <code>1</code> and the number of columns, inclusive
      * @param property true if the value is a cash value; false otherwise.
-     * @throws <code>SQLException</code> if a database access error occurs
+     * @throws SQLException if a database access error occurs
      *         or the given column number is out of bounds
      */
     public void setCurrency(int columnIndex, boolean property)
         throws SQLException {
         checkColRange(columnIndex);

@@ -231,11 +231,11 @@
      * @param property one of the following <code>ResultSetMetaData</code> constants:
      *                 <code>columnNoNulls</code>,
      *                 <code>columnNullable</code>, or
      *                 <code>columnNullableUnknown</code>
      *
-     * @throws <code>SQLException</code> if a database access error occurs,
+     * @throws SQLException if a database access error occurs,
      *         the given column number is out of bounds, or the value supplied
      *         for the <i>property</i> parameter is not one of the following
      *         constants:
      *           <code>ResultSetMetaData.columnNoNulls</code>,
      *           <code>ResultSetMetaData.columnNullable</code>, or