You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by su...@apache.org on 2006/08/16 01:26:51 UTC

svn commit: r431734 - in /db/derby/code/trunk/java/engine/org/apache/derby/iapi/types: DataType.java XML.java

Author: suresht
Date: Tue Aug 15 16:26:50 2006
New Revision: 431734

URL: http://svn.apache.org/viewvc?rev=431734&view=rev
Log:
This patch fixes couple of java doc warnings. 

Contributed by Army Brown (qozinx@gmail.com).

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/XML.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java?rev=431734&r1=431733&r2=431734&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataType.java Tue Aug 15 16:26:50 2006
@@ -478,6 +478,14 @@
 		}
 	}
 
+	/**
+	 * Set the value of this DataValueDescriptor based on the value
+	 * of the specified DataValueDescriptor.
+	 *
+	 * @param dvd	The DataValueDescriptor that holds the value to
+	 *  which we want to set this DataValueDescriptor's value.
+	 *
+	 */
 	protected void setFrom(DataValueDescriptor dvd) throws StandardException
 	{
 		throw StandardException.newException(SQLState.NOT_IMPLEMENTED);

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/XML.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/XML.java?rev=431734&r1=431733&r2=431734&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/XML.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/XML.java Tue Aug 15 16:26:50 2006
@@ -158,7 +158,6 @@
      * object's qualified type.
      * @param val A SQLChar instance to clone and use for
      *  this XML value.
-     * @param qualXType Qualified XML type.
      */
     private XML(SQLChar val, int xmlType)
     {
@@ -255,9 +254,7 @@
     }
 
     /**
-     * @see DataValueDescriptor#setFrom
-     *
-     * Note: 
+     * @see DataType#setFrom
      */
     protected void setFrom(DataValueDescriptor theValue)
         throws StandardException