You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/27 11:14:36 UTC

svn commit: r1140063 - /commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractNamespaceUIRIBasedRulesModule.java

Author: simonetripodi
Date: Mon Jun 27 09:14:36 2011
New Revision: 1140063

URL: http://svn.apache.org/viewvc?rev=1140063&view=rev
Log:
added missing constructor javadoc description

Modified:
    commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractNamespaceUIRIBasedRulesModule.java

Modified: commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractNamespaceUIRIBasedRulesModule.java
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractNamespaceUIRIBasedRulesModule.java?rev=1140063&r1=1140062&r2=1140063&view=diff
==============================================================================
--- commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractNamespaceUIRIBasedRulesModule.java (original)
+++ commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/binder/AbstractNamespaceUIRIBasedRulesModule.java Mon Jun 27 09:14:36 2011
@@ -31,6 +31,13 @@ public abstract class AbstractNamespaceU
 
     private final String namespaceURI;
 
+    /**
+     * Creates a new (nullable) namespaceURI-based {@link RulesModule} that automatically binds every
+     * rule to the input namespaceURI.
+     *
+     * @param namespaceURI Namespace URI for which this Rule is relevant, or <code>null</code> to match
+     *        independent of namespace.
+     */
     public AbstractNamespaceUIRIBasedRulesModule( /* @Nullable */String namespaceURI )
     {
         this.namespaceURI = namespaceURI;