org.apache.commons.digester
インタフェース RuleSet

既知の実装クラスの一覧:
RuleSetBase

public interface RuleSet

Public interface defining a shorthand means of configuring a complete set of related Rule definitions, possibly associated with a particular namespace URI, in one operation. To use an instance of a class that imlements this interface:

バージョン:
$Revision: 1.1 $ $Date: 2001/08/26 22:13:44 $
作成者:
Craig R. McClanahan

メソッドの概要
 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).
 java.lang.String getNamespaceURI()
          Return the namespace URI that will be applied to all Rule instances created from this RuleSet.
 

メソッドの詳細

getNamespaceURI

public java.lang.String getNamespaceURI()
Return the namespace URI that will be applied to all Rule instances created from this RuleSet.

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.
パラメータ:
digester - Digester instance to which the new Rule instances should be added.


Copyright (c) 2001 - Apache Software Foundation