org.apache.commons.chain.config
Class ConfigRuleSet

java.lang.Object
  extended by org.apache.commons.digester.RuleSetBase
      extended by org.apache.commons.chain.config.ConfigRuleSet
All Implemented Interfaces:
RuleSet

public class ConfigRuleSet
extends RuleSetBase

Digester RuleSet for configuring Chain of Responsibility command chains, and adding them to an appropriate Catalog. The following properties may be configured prior to executing the addRuleInstance() method in order to influence the rules that get added, with default values in square brackets:

Version:
$Revision: 480477 $ $Date: 2006-11-29 08:34:52 +0000 (Wed, 29 Nov 2006) $
Author:
Craig R. McClanahan

Field Summary
 
Fields inherited from class org.apache.commons.digester.RuleSetBase
namespaceURI
 
Constructor Summary
ConfigRuleSet()
           
 
Method Summary
 void addRuleInstances(Digester digester)
          Add the set of Rule instances defined in this RuleSet to the specified Digester instance, associating them with our namespace URI (if any).
 String getCatalogClass()
          Return the fully qualified Catalog implementation class.
 String getCatalogElement()
          Return the element name of a catalog element.
 String getChainClass()
          Return the fully qualified Chain implementation class.
 String getChainElement()
          Return the element name of a chain element.
 String getClassAttribute()
          Return the attribute name of a class attribute.
 String getCommandElement()
          Return the element name of a command element.
 String getDefineElement()
          Return the element name of a define element.
 String getNameAttribute()
          Return the attribute name of a name attribute.
 void setCatalogClass(String catalogClass)
          Set the fully qualified Catalog implementation class.
 void setCatalogElement(String catalogElement)
          Set the element name of a catalog element.
 void setChainClass(String chainClass)
          Set the fully qualified Chain implementation class.
 void setChainElement(String chainElement)
          Set the element name of a chain element.
 void setClassAttribute(String classAttribute)
          Set the attribute name of a class attribute.
 void setCommandElement(String commandElement)
          Set the element name of a command element.
 void setDefineElement(String defineElement)
          Set the element name of a define element.
 void setNameAttribute(String nameAttribute)
          Set the attribute name of a name attribute.
 
Methods inherited from class org.apache.commons.digester.RuleSetBase
getNamespaceURI
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConfigRuleSet

public ConfigRuleSet()
Method Detail

getCatalogClass

public String getCatalogClass()

Return the fully qualified Catalog implementation class.

Returns:
The Catalog's class name.

setCatalogClass

public void setCatalogClass(String catalogClass)

Set the fully qualified Catalog implementation class.

Parameters:
catalogClass - The new Catalog implementation class

getCatalogElement

public String getCatalogElement()

Return the element name of a catalog element.

Returns:
The element name of a catalog element.

setCatalogElement

public void setCatalogElement(String catalogElement)

Set the element name of a catalog element.

Parameters:
catalogElement - The new element name

getChainClass

public String getChainClass()

Return the fully qualified Chain implementation class.

Returns:
The Chain's class name.

setChainClass

public void setChainClass(String chainClass)

Set the fully qualified Chain implementation class.

Parameters:
chainClass - The new Chain implementation class

getChainElement

public String getChainElement()

Return the element name of a chain element.

Returns:
The element name of a catalog element.

setChainElement

public void setChainElement(String chainElement)

Set the element name of a chain element.

Parameters:
chainElement - The new element name

getClassAttribute

public String getClassAttribute()

Return the attribute name of a class attribute.

Returns:
The attribute name of a class attribute.

setClassAttribute

public void setClassAttribute(String classAttribute)

Set the attribute name of a class attribute.

Parameters:
classAttribute - The new attribute name

getCommandElement

public String getCommandElement()

Return the element name of a command element.

Returns:
The element name of a command element.

setCommandElement

public void setCommandElement(String commandElement)

Set the element name of a command element.

Parameters:
commandElement - The new element name

getDefineElement

public String getDefineElement()

Return the element name of a define element.

Returns:
The element name of a define element.

setDefineElement

public void setDefineElement(String defineElement)

Set the element name of a define element.

Parameters:
defineElement - The new element name

getNameAttribute

public String getNameAttribute()

Return the attribute name of a name attribute.

Returns:
The attribute name of an attribute element.

setNameAttribute

public void setNameAttribute(String nameAttribute)

Set the attribute name of a name attribute.

Parameters:
nameAttribute - The new attribute name

addRuleInstances

public void addRuleInstances(Digester digester)

Add the set of Rule instances defined in this RuleSet to the specified Digester instance, associating them with our namespace URI (if any). This method should only be called by a Digester instance.

Specified by:
addRuleInstances in interface RuleSet
Specified by:
addRuleInstances in class RuleSetBase
Parameters:
digester - Digester instance to which the new Rule instances should be added.


Copyright © 2003-2008 The Apache Software Foundation. All Rights Reserved.