Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 21163687A for ; Sat, 28 May 2011 15:12:08 +0000 (UTC) Received: (qmail 57095 invoked by uid 500); 28 May 2011 15:12:07 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 57043 invoked by uid 500); 28 May 2011 15:12:07 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 57036 invoked by uid 99); 28 May 2011 15:12:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 May 2011 15:12:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 May 2011 15:12:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CEDBB2388A33; Sat, 28 May 2011 15:11:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1128661 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java Date: Sat, 28 May 2011 15:11:46 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110528151146.CEDBB2388A33@eris.apache.org> Author: simonetripodi Date: Sat May 28 15:11:46 2011 New Revision: 1128661 URL: http://svn.apache.org/viewvc?rev=1128661&view=rev Log: fixed javadoc violations Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java?rev=1128661&r1=1128660&r2=1128661&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java Sat May 28 15:11:46 2011 @@ -299,6 +299,10 @@ public class NodeCreateRule /** * Default constructor. Creates an instance of this rule that will create a DOM {@link org.w3c.dom.Element Element}. + * + * @throws ParserConfigurationException if a DocumentBuilder cannot be created which satisfies the + * configuration requested. + * @see DocumentBuilderFactory#newDocumentBuilder() */ public NodeCreateRule() throws ParserConfigurationException @@ -324,7 +328,9 @@ public class NodeCreateRule * * @param nodeType the type of node to create, which can be either {@link org.w3c.dom.Node#ELEMENT_NODE * Node.ELEMENT_NODE} or {@link org.w3c.dom.Node#DOCUMENT_FRAGMENT_NODE Node.DOCUMENT_FRAGMENT_NODE} - * @throws IllegalArgumentException if the node type is not supported + * @throws ParserConfigurationException if a DocumentBuilder cannot be created which satisfies the + * configuration requested. + * @see DocumentBuilderFactory#newDocumentBuilder() */ public NodeCreateRule( int nodeType ) throws ParserConfigurationException @@ -341,7 +347,6 @@ public class NodeCreateRule * @param nodeType the type of node to create, which can be either {@link org.w3c.dom.Node#ELEMENT_NODE * Node.ELEMENT_NODE} or {@link org.w3c.dom.Node#DOCUMENT_FRAGMENT_NODE Node.DOCUMENT_FRAGMENT_NODE} * @param documentBuilder the JAXP DocumentBuilder to use - * @throws IllegalArgumentException if the node type is not supported */ public NodeCreateRule( int nodeType, DocumentBuilder documentBuilder ) { @@ -420,7 +425,7 @@ public class NodeCreateRule } /** - * Pop the Node off the top of the stack. + * {@inheritDoc} */ @Override public void end( String namespace, String name )