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:54:29 UTC

svn commit: r1128687 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SimpleRegexMatcher.java

Author: simonetripodi
Date: Sat May 28 15:54:29 2011
New Revision: 1128687

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

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

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SimpleRegexMatcher.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SimpleRegexMatcher.java?rev=1128687&r1=1128686&r2=1128687&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SimpleRegexMatcher.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/SimpleRegexMatcher.java Sat May 28 15:54:29 2011
@@ -53,6 +53,8 @@ public class SimpleRegexMatcher
 
     /**
      * Gets the <code>Log</code> implementation.
+     *
+     * @return the <code>Log</code> implementation.
      */
     public Log getLog()
     {
@@ -61,6 +63,8 @@ public class SimpleRegexMatcher
 
     /**
      * Sets the current <code>Log</code> implementation used by this class.
+     *
+     * @param the current <code>Log</code> implementation used by this class.
      */
     public void setLog( Log log )
     {
@@ -70,11 +74,7 @@ public class SimpleRegexMatcher
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Matches using simple regex algorithm.
-     * 
-     * @param basePattern the standard digester path representing the element
-     * @param regexPattern the regex pattern the path will be tested against
-     * @return true if the given pattern matches the given path
+     * {@inheritDoc}
      */
     @Override
     public boolean match( String basePattern, String regexPattern )
@@ -91,6 +91,11 @@ public class SimpleRegexMatcher
 
     /**
      * Implementation of regex matching algorithm. This calls itself recursively.
+     *
+     * @param basePattern the standard digester path representing the element
+     * @param regexPattern the regex pattern the path will be tested against
+     * @param baseAt FIXME
+     * @param regexAt FIXME
      */
     private boolean match( String basePattern, String regexPattern, int baseAt, int regexAt )
     {