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/05/28 17:26:50 UTC

svn commit: r1128669 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RegexRules.java

Author: simonetripodi
Date: Sat May 28 15:26:49 2011
New Revision: 1128669

URL: http://svn.apache.org/viewvc?rev=1128669&view=rev
Log:
fixed javadoc violations

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RegexRules.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RegexRules.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RegexRules.java?rev=1128669&r1=1128668&r2=1128669&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RegexRules.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RegexRules.java Sat May 28 15:26:49 2011
@@ -52,7 +52,6 @@ public class RegexRules
      * Construct sets the Regex matching strategy.
      * 
      * @param matcher the regex strategy to be used, not null
-     * @throws IllegalArgumentException if the strategy is null
      */
     public RegexRules( RegexMatcher matcher )
     {
@@ -63,6 +62,8 @@ public class RegexRules
 
     /**
      * Gets the current regex matching strategy.
+     *
+     * @return the current regex matching strategy.
      */
     public RegexMatcher getRegexMatcher()
     {
@@ -73,7 +74,6 @@ public class RegexRules
      * Sets the current regex matching strategy.
      * 
      * @param matcher use this RegexMatcher, not null
-     * @throws IllegalArgumentException if the strategy is null
      */
     public void setRegexMatcher( RegexMatcher matcher )
     {
@@ -87,10 +87,7 @@ public class RegexRules
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Register a new Rule instance matching the specified pattern.
-     * 
-     * @param pattern Nesting pattern to be matched for this Rule
-     * @param rule Rule instance to be registered
+     * {@inheritDoc}
      */
     @Override
     protected void registerRule( String pattern, Rule rule )
@@ -99,7 +96,7 @@ public class RegexRules
     }
 
     /**
-     * Clear all existing Rule instance registrations.
+     * {@inheritDoc}
      */
     @Override
     public void clear()
@@ -108,13 +105,7 @@ public class RegexRules
     }
 
     /**
-     * Finds matching rules by using current regex matching strategy. The rule associated with each path that matches is
-     * added to the list of matches. The order of matching rules is the same order that they were added.
-     * 
-     * @param namespaceURI Namespace URI for which to select matching rules, or <code>null</code> to match regardless of
-     *            namespace URI
-     * @param pattern Nesting pattern to be matched
-     * @return a list of matching <code>Rule</code>'s
+     * {@inheritDoc}
      */
     @Override
     public List<Rule> match( String namespaceURI, String pattern )
@@ -139,9 +130,7 @@ public class RegexRules
     }
 
     /**
-     * Return a List of all registered Rule instances, or a zero-length List if there are no registered Rule instances.
-     * If more than one Rule instance has been registered, they <strong>must</strong> be returned in the order
-     * originally registered through the <code>add()</code> method.
+     * {@inheritDoc}
      */
     @Override
     public List<Rule> rules()