Uses of Class
org.apache.commons.digester.plugins.RuleFinder
-
Packages that use RuleFinder Package Description org.apache.commons.digester.plugins Theplugins
package provides an easy mechanism whereby new digestion rules can be added dynamically during a digestion.org.apache.commons.digester.plugins.strategies Theplugins.strategies
package contains "rule-finding" strategy classes, and their associated "helper" loader classes. -
-
Uses of RuleFinder in org.apache.commons.digester.plugins
Fields in org.apache.commons.digester.plugins with type parameters of type RuleFinder Modifier and Type Field Description private java.util.List<RuleFinder>
PluginContext. ruleFinders
A list of RuleFinder objects used by all Declarations (and thus indirectly by all PluginCreateRules to locate the custom rules for plugin classes.Methods in org.apache.commons.digester.plugins that return types with arguments of type RuleFinder Modifier and Type Method Description java.util.List<RuleFinder>
PluginContext. getRuleFinders()
Return the list of RuleFinder objects.java.util.List<RuleFinder>
PluginRules. getRuleFinders()
Method parameters in org.apache.commons.digester.plugins with type arguments of type RuleFinder Modifier and Type Method Description void
PluginContext. setRuleFinders(java.util.List<RuleFinder> ruleFinders)
Set the list of RuleFinder objects.void
PluginRules. setRuleFinders(java.util.List<RuleFinder> ruleFinders)
-
Uses of RuleFinder in org.apache.commons.digester.plugins.strategies
Subclasses of RuleFinder in org.apache.commons.digester.plugins.strategies Modifier and Type Class Description class
FinderFromClass
A rule-finding algorithm which expects the caller to specify a classname and methodname as plugin properties.class
FinderFromDfltClass
A rule-finding algorithm which looks for a method with a specific name on a class whose name is derived from the plugin class name.class
FinderFromDfltMethod
A rule-finding algorithm which looks for a method with a specific name on the plugin class.class
FinderFromDfltResource
A rule-finding algorithm which looks for a resource file in the classpath whose name is derived from the plugin class name plus a specified suffix.class
FinderFromFile
A rule-finding algorithm which expects the user to specify an absolute or relative path in the plugin declaration.class
FinderFromMethod
A rule-finding algorithm which expects the caller to specify a methodname as a plugin property, where the method exists on the plugin class.class
FinderFromResource
A rule-finding algorithm which expects the user to specify a resource name (ie a file in the classpath).class
FinderSetProperties
A rule-finding algorithm which expects the user to specify whether "automatic property setting" is desired.
-