Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 67672 invoked from network); 15 Aug 2006 23:27:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Aug 2006 23:27:13 -0000 Received: (qmail 15446 invoked by uid 500); 15 Aug 2006 23:27:13 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 15370 invoked by uid 500); 15 Aug 2006 23:27:12 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 15359 invoked by uid 99); 15 Aug 2006 23:27:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Aug 2006 16:27:12 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Aug 2006 16:27:11 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 8B2351A981A; Tue, 15 Aug 2006 16:26:51 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r431734 - in /db/derby/code/trunk/java/engine/org/apache/derby/iapi/types: DataType.java XML.java Date: Tue, 15 Aug 2006 23:26:51 -0000 To: derby-commits@db.apache.org From: suresht@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060815232651.8B2351A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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