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 B9C7E4F57 for ; Fri, 27 May 2011 23:36:48 +0000 (UTC) Received: (qmail 94862 invoked by uid 500); 27 May 2011 23:36:48 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 94808 invoked by uid 500); 27 May 2011 23:36:48 -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 94801 invoked by uid 99); 27 May 2011 23:36:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 May 2011 23:36:48 +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; Fri, 27 May 2011 23:36:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6A6EF2388A33; Fri, 27 May 2011 23:36:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1128528 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java Date: Fri, 27 May 2011 23:36:27 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110527233627.6A6EF2388A33@eris.apache.org> Author: simonetripodi Date: Fri May 27 23:36:27 2011 New Revision: 1128528 URL: http://svn.apache.org/viewvc?rev=1128528&view=rev Log: fixed javadoc Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java?rev=1128528&r1=1128527&r2=1128528&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java Fri May 27 23:36:27 2011 @@ -50,7 +50,7 @@ public abstract class AbstractRulesImpl // ------------------------------------------------------------- Properties /** - * Return the Digester instance with which this Rules instance is associated. + * {@inheritDoc} */ public Digester getDigester() { @@ -58,9 +58,7 @@ public abstract class AbstractRulesImpl } /** - * Set the Digester instance with which this Rules instance is associated. - * - * @param digester The newly associated Digester instance + * {@inheritDoc} */ public void setDigester( Digester digester ) { @@ -68,7 +66,7 @@ public abstract class AbstractRulesImpl } /** - * Return the namespace URI that will be applied to all subsequently added Rule objects. + * {@inheritDoc} */ public String getNamespaceURI() { @@ -76,10 +74,7 @@ public abstract class AbstractRulesImpl } /** - * Set the namespace URI that will be applied to all subsequently added Rule objects. - * - * @param namespaceURI Namespace URI that must match on all subsequently added rules, or null for - * matching regardless of the current namespace URI + * {@inheritDoc} */ public void setNamespaceURI( String namespaceURI ) {