Uses of Class
org.apache.commons.digester3.AbstractMethodRule
-
Packages that use AbstractMethodRule Package Description org.apache.commons.digester3 Thexmlrules
package provides for XML-based definition of rules forDigester
.org.apache.commons.digester3.binder The Digester EDSL allows configure Digester using fluent APIs. -
-
Uses of AbstractMethodRule in org.apache.commons.digester3
Subclasses of AbstractMethodRule in org.apache.commons.digester3 Modifier and Type Class Description class
SetNextRule
Rule implementation that calls a method on the (top-1) (parent) object, passing the top object (child) as an argument.class
SetRootRule
Rule implementation that calls a method on the root object on the stack, passing the top object (child) as an argument.class
SetTopRule
Rule implementation that calls a "set parent" method on the top (child) object, passing the (top-1) (parent) object as an argument. -
Uses of AbstractMethodRule in org.apache.commons.digester3.binder
Classes in org.apache.commons.digester3.binder with type parameters of type AbstractMethodRule Modifier and Type Class Description class
AbstractParamTypeBuilder<R extends AbstractMethodRule>
Builder chained when invokingLinkedRuleBuilder.setNext(String)
,LinkedRuleBuilder.setRoot(String)
orLinkedRuleBuilder.setTop(String)
.
-