Return-Path: Delivered-To: apmail-xml-xalan-cvs-archive@www.apache.org Received: (qmail 15860 invoked from network); 23 Jan 2005 00:16:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 23 Jan 2005 00:16:06 -0000 Received: (qmail 24259 invoked by uid 500); 23 Jan 2005 00:16:06 -0000 Delivered-To: apmail-xml-xalan-cvs-archive@xml.apache.org Received: (qmail 24195 invoked by uid 500); 23 Jan 2005 00:16:06 -0000 Mailing-List: contact xalan-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: Delivered-To: mailing list xalan-cvs@xml.apache.org Received: (qmail 24179 invoked by uid 99); 23 Jan 2005 00:16:05 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 22 Jan 2005 16:16:05 -0800 Received: (qmail 15839 invoked by uid 1839); 23 Jan 2005 00:16:04 -0000 Date: 23 Jan 2005 00:16:04 -0000 Message-ID: <20050123001604.15838.qmail@minotaur.apache.org> From: mcnamara@apache.org To: xml-xalan-cvs@apache.org Subject: cvs commit: xml-xalan/java/src/org/apache/xalan/lib/sql DTMDocument.java SQLDocument.java XConnection.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N mcnamara 2005/01/22 16:16:04 Modified: java/src/org/apache/xalan/lib ExsltCommon.java Extensions.java NodeInfo.java java/src/org/apache/xalan/lib/sql DTMDocument.java SQLDocument.java XConnection.java Log: Clean up javadoc to reduce warnings during doc builds. See XALANJ-2048 Revision Changes Path 1.11 +2 -2 xml-xalan/java/src/org/apache/xalan/lib/ExsltCommon.java Index: ExsltCommon.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/ExsltCommon.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ExsltCommon.java 11 Feb 2004 17:56:36 -0000 1.10 +++ ExsltCommon.java 23 Jan 2005 00:16:04 -0000 1.11 @@ -87,7 +87,7 @@ * * The Xalan extensions MethodResolver converts 'node-set' to 'nodeSet'. * - * @param myProcesser is passed in by the Xalan extension processor + * @param myProcessor is passed in by the Xalan extension processor * @param rtf The result tree fragment to be converted to a node-set. * * @return node-set with the contents of the result tree fragment. 1.30 +2 -6 xml-xalan/java/src/org/apache/xalan/lib/Extensions.java Index: Extensions.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/Extensions.java,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- Extensions.java 23 Feb 2004 10:29:34 -0000 1.29 +++ Extensions.java 23 Jan 2005 00:16:04 -0000 1.30 @@ -213,7 +213,7 @@ * * @param myContext an ExpressionContext passed in by the * extension mechanism. This must be an XPathContext. - * @param xpathExtr The XPath expression to be evaluated. + * @param xpathExpr The XPath expression to be evaluated. * @return the XObject resulting from evaluating the XPath * * @throws SAXNotSupportedException @@ -237,8 +237,6 @@ * * Contributed to XalanJ1 by Benoit Cerrina. * - * @param myContext an ExpressionContext passed in by the - * extension mechanism. This must be an XPathContext. * @param toTokenize The string to be split into text tokens. * @param delims The delimiters to use. * @return a NodeSet as described above. @@ -273,8 +271,6 @@ * * Contributed to XalanJ1 by Benoit Cerrina. * - * @param myContext an ExpressionContext passed in by the - * extension mechanism. This must be an XPathContext. * @param toTokenize The string to be split into text tokens. * @return a NodeSet as described above. */ 1.7 +1 -2 xml-xalan/java/src/org/apache/xalan/lib/NodeInfo.java Index: NodeInfo.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/NodeInfo.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- NodeInfo.java 11 Feb 2004 17:56:36 -0000 1.6 +++ NodeInfo.java 23 Jan 2005 00:16:04 -0000 1.7 @@ -61,7 +61,6 @@ * argument. If a node set is passed as argument, the system id of * the first node in the set is returned. * - * @param context an ExpressionContext value * @param nodeList a NodeList value * @return a String value */ 1.17 +1 -5 xml-xalan/java/src/org/apache/xalan/lib/sql/DTMDocument.java Index: DTMDocument.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/sql/DTMDocument.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- DTMDocument.java 15 Dec 2004 17:35:30 -0000 1.16 +++ DTMDocument.java 23 Jan 2005 00:16:04 -0000 1.17 @@ -871,8 +871,6 @@ * @param parm2 * * @throws org.xml.sax.SAXException - * - * @throws org.xml.sax.SAXException */ public void dispatchToEvents( int parm1, ContentHandler parm2 )throws org.xml.sax.SAXException { @@ -900,8 +898,6 @@ * @param nodeHandle * @param ch * @param normalize - * - * @throws org.xml.sax.SAXException * * @throws org.xml.sax.SAXException */ 1.28 +1 -6 xml-xalan/java/src/org/apache/xalan/lib/sql/SQLDocument.java Index: SQLDocument.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/sql/SQLDocument.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- SQLDocument.java 19 Oct 2004 21:56:55 -0000 1.27 +++ SQLDocument.java 23 Jan 2005 00:16:04 -0000 1.28 @@ -298,11 +298,6 @@ /** * @param mgr * @param ident - * @param pool - * @param con - * @param stmt - * @param data - * @param streamingMode * @throws SQLException */ // public cSQLDocument(DTMManager mgr, int ident, Statement stmt, 1.32 +1 -3 xml-xalan/java/src/org/apache/xalan/lib/sql/XConnection.java Index: XConnection.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/sql/XConnection.java,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- XConnection.java 19 Oct 2004 21:56:54 -0000 1.31 +++ XConnection.java 23 Jan 2005 00:16:04 -0000 1.32 @@ -1234,8 +1234,6 @@ /** * Set an error and/or warning on this connection. - * @param feature The name of the feature being set, currently supports (streaming, inline-variables, multiple-results, cache-statements, default-pool-enabled). - * @param setting The new setting for the specified feature, currently "true" is true and anything else is false. * */ public void setError(Exception excp, SQLDocument doc, SQLWarning warn) --------------------------------------------------------------------- To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xalan-cvs-help@xml.apache.org