Uses of Interface
org.apache.commons.digester.Rules

Packages that use Rules
org.apache.commons.digester The Digester package provides for rules-based processing of arbitrary XML documents. 
org.apache.commons.digester.plugins Provides an easy mechanism whereby new digestion rules can be added dynamically during a digestion. 
 

Uses of Rules in org.apache.commons.digester
 

Classes in org.apache.commons.digester that implement Rules
 class AbstractRulesImpl
          AbstractRuleImpl provides basic services for Rules implementations.
 class ExtendedBaseRules
          Extension of RulesBase for complex schema.
 class RegexRules
          Rules implementation that uses regular expression matching for paths.
 class RulesBase
          Default implementation of the Rules interface that supports the standard rule matching behavior.
 class WithDefaultsRulesWrapper
          Rules Decorator that returns default rules when no matches are returned by the wrapped implementation.
 

Fields in org.apache.commons.digester declared as Rules
protected  Rules Digester.rules
          The Rules implementation containing our collection of Rule instances and associated matching policy.
 

Methods in org.apache.commons.digester that return Rules
 Rules Digester.getRules()
          Return the Rules implementation object containing our rules collection and associated matching policy.
 

Methods in org.apache.commons.digester with parameters of type Rules
 void Digester.setRules(Rules rules)
          Set the Rules implementation object containing our rules collection and associated matching policy.
 

Constructors in org.apache.commons.digester with parameters of type Rules
WithDefaultsRulesWrapper(Rules wrappedRules)
          Base constructor.
 

Uses of Rules in org.apache.commons.digester.plugins
 

Classes in org.apache.commons.digester.plugins that implement Rules
 class PluginRules
          A custom digester Rules manager which must be used as the Rules object when using the plugins module functionality.
 

Methods in org.apache.commons.digester.plugins that return Rules
 Rules PluginRules.getParent()
          Return the parent Rules object.
abstract  Rules RulesFactory.newRules(Digester d, Class pluginClass)
          Return an instance of some Rules implementation that the plugged-in class shall use to match its private parsing rules.
 

Constructors in org.apache.commons.digester.plugins with parameters of type Rules
PluginRules(Rules decoratedRules)
          Constructor for top-level Rules object which handles rule-matching using the specified implementation.
 



Copyright © 2001-2009 The Apache Software Foundation. All Rights Reserved.