Author: simonetripodi
Date: Sat May 28 16:08:58 2011
New Revision: 1128694

URL: http://svn.apache.org/viewvc?rev=1128694&view=rev
Log:
fixed javadoc violations
no needs to redeclare the match() method as abstract

Modified:
    
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSetBase.java
    
commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java

Modified: 
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSetBase.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSetBase.java?rev=1128694&r1=1128693&r2=1128694&view=diff
==============================================================================
--- 
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSetBase.java
 (original)
+++ 
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RuleSetBase.java
 Sat May 28 16:08:58 2011
@@ -60,21 +60,11 @@ public abstract class RuleSetBase
     // ------------------------------------------------------------- Properties
 
     /**
-     * Return the namespace URI that will be applied to all Rule instances 
created from this RuleSet.
+     * {@inheritDoc}
      */
     public String getNamespaceURI()
     {
         return ( this.namespaceURI );
     }
 
-    // --------------------------------------------------------- Public Methods
-
-    /**
-     * Add the set of Rule instances defined in this RuleSet to the specified 
<code>Digester</code> instance,
-     * associating them with our namespace URI (if any). This method should 
only be called by a Digester instance.
-     * 
-     * @param digester Digester instance to which the new Rule instances 
should be added.
-     */
-    public abstract void addRuleInstances( Digester digester );
-
 }

Modified: 
commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java?rev=1128694&r1=1128693&r2=1128694&view=diff
==============================================================================
--- 
commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
 (original)
+++ 
commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/TestRuleSet.java
 Sat May 28 16:08:58 2011
@@ -88,12 +88,8 @@ public class TestRuleSet
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Add the set of Rule instances defined in this RuleSet to the specified 
<code>Digester</code> instance,
-     * associating them with our namespace URI (if any). This method should 
only be called by a Digester instance.
-     * 
-     * @param digester Digester instance to which the new Rule instances 
should be added.
+     * {@inheritDoc}
      */
-    @Override
     public void addRuleInstances( Digester digester )
     {
 


Reply via email to