You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2008/01/29 12:19:28 UTC

svn commit: r616262 - in /harmony/enhanced/classlib/trunk/modules/sql/src/main/java: java/sql/Connection.java javax/sql/rowset/serial/SQLOutputImpl.java

Author: tellison
Date: Tue Jan 29 03:19:25 2008
New Revision: 616262

URL: http://svn.apache.org/viewvc?rev=616262&view=rev
Log:
Simple Javadoc fixes.

Modified:
    harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Connection.java
    harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLOutputImpl.java

Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Connection.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Connection.java?rev=616262&r1=616261&r2=616262&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Connection.java (original)
+++ harmony/enhanced/classlib/trunk/modules/sql/src/main/java/java/sql/Connection.java Tue Jan 29 03:19:25 2008
@@ -134,7 +134,7 @@
      *            one of :
      *            <ul>
      *            <li>{@link ResultSet#CONCUR_UPDATABLE}
-     *            <li>{@link ResultSet#CCONCUR_READ_ONLY}
+     *            <li>{@link ResultSet#CONCUR_READ_ONLY}
      *            </ul>
      * @return a new instance of <code>Statement</code> capable of
      *         manufacturing <code>ResultSet</code>s that satisfy the

Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLOutputImpl.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLOutputImpl.java?rev=616262&r1=616261&r2=616262&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLOutputImpl.java (original)
+++ harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLOutputImpl.java Tue Jan 29 03:19:25 2008
@@ -71,7 +71,7 @@
     /**
      * {@inheritDoc}
      * 
-     * @see java.sql.SQLOutput#writeArray(Array))
+     * @see java.sql.SQLOutput#writeArray(Array)
      */
     @SuppressWarnings("unchecked")
     public void writeArray(Array theArray) throws SQLException {
@@ -86,7 +86,7 @@
     /**
      * {@inheritDoc}
      * 
-     * @see java.sql.SQLOutput#writeAsciiStream(InputStream))
+     * @see java.sql.SQLOutput#writeAsciiStream(InputStream)
      */
     @SuppressWarnings("unchecked")
     public void writeAsciiStream(InputStream theStream) throws SQLException {
@@ -108,7 +108,7 @@
     /**
      * {@inheritDoc}
      * 
-     * @see java.sql.SQLOutput#writeBigDecimal(BigDecimal))
+     * @see java.sql.SQLOutput#writeBigDecimal(BigDecimal)
      */
     @SuppressWarnings("unchecked")
     public void writeBigDecimal(BigDecimal theBigDecimal) throws SQLException {
@@ -122,7 +122,7 @@
      * and writeAsciiStream in RI. Keep their implementation same temporarily
      * until some bug is found.
      * 
-     * @see java.sql.SQLOutput#writeBinaryStream(InputStream))
+     * @see java.sql.SQLOutput#writeBinaryStream(InputStream)
      */
     @SuppressWarnings("unchecked")
     public void writeBinaryStream(InputStream theStream) throws SQLException {
@@ -132,7 +132,7 @@
     /**
      * {@inheritDoc}
      * 
-     * @see java.sql.SQLOutput#writeBlob(Blob))
+     * @see java.sql.SQLOutput#writeBlob(Blob)
      */
     @SuppressWarnings("unchecked")
     public void writeBlob(Blob theBlob) throws SQLException {
@@ -177,7 +177,7 @@
     /**
      * {@inheritDoc}
      * 
-     * @see java.sql.SQLOutput#writeCharacterStream(Reader))
+     * @see java.sql.SQLOutput#writeCharacterStream(Reader)
      */
     @SuppressWarnings("unchecked")
     public void writeCharacterStream(Reader theStream) throws SQLException {