Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 99520 invoked from network); 25 Jan 2011 22:05:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Jan 2011 22:05:50 -0000 Received: (qmail 15941 invoked by uid 500); 25 Jan 2011 22:05:49 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 15854 invoked by uid 500); 25 Jan 2011 22:05:49 -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 15845 invoked by uid 99); 25 Jan 2011 22:05:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jan 2011 22:05:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Tue, 25 Jan 2011 22:05:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7C1AC2388A40; Tue, 25 Jan 2011 22:05:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1063481 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java Date: Tue, 25 Jan 2011 22:05:28 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110125220528.7C1AC2388A40@eris.apache.org> Author: simonetripodi Date: Tue Jan 25 22:05:28 2011 New Revision: 1063481 URL: http://svn.apache.org/viewvc?rev=1063481&view=rev Log: added method to associate a namespace URI to a rule pattern Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java?rev=1063481&r1=1063480&r2=1063481&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/rulesbinder/LinkedRuleBuilder.java Tue Jan 25 22:05:28 2011 @@ -25,6 +25,14 @@ import org.apache.commons.digester3.Obje public interface LinkedRuleBuilder { /** + * Sets the namespace URI for the current rule pattern. + * + * @param namespaceURI the namespace URI associated to the rule pattern. + * @return this {@link LinkedRuleBuilder} instance + */ + LinkedRuleBuilder withNamespaceURI(String namespaceURI); + + /** * Construct rule that automatically sets a property from the body text, taking the property * name the same as the current element. */