Author: simonetripodi
Date: Sun Jun 26 23:51:50 2011
New Revision: 1139972
URL: http://svn.apache.org/viewvc?rev=1139972&view=rev
Log:
removed redundant abstract methods
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java
Modified:
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java?rev=1139972&r1=1139971&r2=1139972&view=diff
==============================================================================
---
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java
(original)
+++
commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractRulesImpl.java
Sun Jun 26 23:51:50 2011
@@ -19,7 +19,6 @@ package org.apache.commons.digester3;
* under the License.
*/
-import java.util.List;
/**
* <p>
@@ -115,30 +114,4 @@ public abstract class AbstractRulesImpl
*/
protected abstract void registerRule( String pattern, Rule rule );
- /**
- * Clear all existing Rule instance registrations.
- */
- public abstract void clear();
-
- /**
- * Return a List of all registered Rule instances that match the specified
nesting pattern, or a zero-length List if
- * there are no matches. If more than one Rule instance matches, they
<strong>must</strong> be returned in the order
- * originally registered through the <code>add()</code> method.
- *
- * @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 all registered Rule instances that match the
specified nesting pattern
- */
- public abstract List<Rule> match( String namespaceURI, String pattern );
-
- /**
- * 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.
- *
- * @return A List of all registered Rule instances
- */
- public abstract List<Rule> rules();
-
}