Author: markt
Date: Tue Feb 19 20:00:33 2013
New Revision: 1447888

URL: http://svn.apache.org/r1447888
Log:
UCDetector: Remove unused classes

Removed:
    tomcat/trunk/java/org/apache/tomcat/util/digester/GenericParser.java
    tomcat/trunk/java/org/apache/tomcat/util/digester/NodeCreateRule.java
    
tomcat/trunk/java/org/apache/tomcat/util/digester/ParserFeatureSetterFactory.java
    
tomcat/trunk/java/org/apache/tomcat/util/digester/WithDefaultsRulesWrapper.java
    tomcat/trunk/java/org/apache/tomcat/util/digester/XercesParser.java
Modified:
    tomcat/trunk/java/org/apache/tomcat/util/digester/package.html

Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/package.html
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/digester/package.html?rev=1447888&r1=1447887&r2=1447888&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/digester/package.html (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/digester/package.html Tue Feb 19 
20:00:33 2013
@@ -422,9 +422,6 @@ following:</p>
     CallMethodRule within which we are nested.  You can specify that the
     parameter value be taken from a particular named attribute, or from the
     nested body content of this element.</li>
-<li><a href="NodeCreateRule.html">NodeCreateRule</a> - A specialized rule
-    that converts part of the tree into a <code>DOM Node</code> and then
-    pushes it onto the stack.</li>
 </ul>
 
 <p>You can create instances of the standard <code>Rule</code> classes and
@@ -909,31 +906,6 @@ regex (to allow the dependencies require
 to be kept to a minimum).
 </p>
 
-<h4>WithDefaultsRulesWrapper</h4>
-<p>
-<a href="WithDefaultsRulesWrapper.html"> WithDefaultsRulesWrapper</a> allows
-default <code>Rule</code> instances to be added to any existing
-<code>Rules</code> implementation. These default <code>Rule</code> instances
-will be returned for any match for which the wrapped implementation does not
-return any matches.
-</p>
-<p>
-For example,
-<pre>
-    Rule alpha;
-    ...
-    WithDefaultsRulesWrapper rules = new WithDefaultsRulesWrapper(new 
BaseRules());
-    rules.addDefault(alpha);
-    ...
-    digester.setRules(rules);
-    ...
-</pre>
-when a pattern does not match any other rule, then rule alpha will be called.
-</p>
-<p>
-<code>WithDefaultsRulesWrapper</code> follows the <em>Decorator</em> pattern.
-</p>
-
 <a name="doc.RuleSets"></a>
 <h3>Encapsulated Rule Sets</h3>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to