Author: markt Date: Tue Feb 19 20:31:17 2013 New Revision: 1447905 URL: http://svn.apache.org/r1447905 Log: UCDetector: Remove unused classes
Removed: tomcat/trunk/java/org/apache/tomcat/util/digester/ObjectParamRule.java tomcat/trunk/java/org/apache/tomcat/util/digester/PathCallParamRule.java tomcat/trunk/java/org/apache/tomcat/util/digester/SetPropertyRule.java tomcat/trunk/java/org/apache/tomcat/util/digester/SetRootRule.java tomcat/trunk/java/org/apache/tomcat/util/digester/SetTopRule.java Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/CallParamRule.java tomcat/trunk/java/org/apache/tomcat/util/digester/package.html Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/CallParamRule.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/digester/CallParamRule.java?rev=1447905&r1=1447904&r2=1447905&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/digester/CallParamRule.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/digester/CallParamRule.java Tue Feb 19 20:31:17 2013 @@ -35,7 +35,6 @@ import org.xml.sax.Attributes; * <li>from the top object on the stack. * See {@link #CallParamRule(int paramIndex, boolean fromStack)} * <li>the current path being processed (separate <code>Rule</code>). - * See {@link PathCallParamRule} * </ul> * </p> */ 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=1447905&r1=1447904&r2=1447905&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:31:17 2013 @@ -386,14 +386,6 @@ following:</p> pattern. This causes the creation of a new Java object, followed by "configuration" of that object's properties based on the attributes of the same XML element that created this object.</li> -<li><a href="SetPropertyRule.html">SetPropertyRule</a> - When the - <code>begin()</code> method is called, the digester calls a specified - property setter (where the property itself is named by an attribute) - with a specified value (where the value is named by another attribute), - on the object at the top of the digester's stack. - This is useful when your XML file conforms to a particular DTD, and - you wish to configure a particular property that does not have a - corresponding attribute in the DTD.</li> <li><a href="SetNextRule.html">SetNextRule</a> - When the <code>end()</code> method is called, the digester analyzes the next-to-top element on the stack, looking for a property setter method @@ -401,13 +393,6 @@ following:</p> at the top of the stack as an argument. This rule is commonly used to establish one-to-many relationships between the two objects, with the method name commonly being something like "addChild".</li> -<li><a href="SetTopRule.html">SetTopRule</a> - When the - <code>end()</code> method is called, the digester analyzes the - top element on the stack, looking for a property setter method for a - specified property. It then calls this method, passing the next-to-top - object on the stack as an argument. This rule would be used as an - alternative to a SetNextRule, with a typical method name "setParent", - if the API supported by your object classes prefers this approach.</li> <li><a href="CallMethodRule.html">CallMethodRule</a> - This rule sets up a method call to a named method of the top object on the digester's stack, which will actually take place when the <code>end()</code> method is --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org