Package org.apache.tomcat.util.digester
Class NodeCreateRule
- java.lang.Object
-
- org.apache.tomcat.util.digester.Rule
-
- org.apache.tomcat.util.digester.NodeCreateRule
-
public class NodeCreateRule extends Rule
A rule implementation that creates a DOMNodecontaining the XML at the element that matched the rule. Two concrete types of nodes can be created by this rule:- the default is to create an
Elementnode. The created element will correspond to the element that matched the rule, containing all XML content underneath that element. - alternatively, this rule can create nodes of type
DocumentFragment, which will contain only the XML content under the element the rule was trigged on.
The created
Nodewill be pushed on Digester's object stack when done. To use it in the context of another DOMDocument, it must be imported first, using the Document methodimportNode().Important Note: This is implemented by replacing the SAX
ContentHandlerin the parser used by Digester, and resetting it when the matched element is closed. As a side effect, rules that would match XML nodes under the element that matches aNodeCreateRulewill never be triggered by Digester, which usually is the behavior one would expect.Note that the current implementation does not set the namespace prefixes in the exported nodes. The (usually more important) namespace URIs are set, of course.
- Since:
- Digester 1.4
- the default is to create an
-
-
Field Summary
-
Fields inherited from class org.apache.tomcat.util.digester.Rule
digester, namespaceURI
-
-
Constructor Summary
Constructors Constructor Description NodeCreateRule()Default constructor.NodeCreateRule(int nodeType)Constructor.NodeCreateRule(int nodeType, DocumentBuilder documentBuilder)Constructor.NodeCreateRule(DocumentBuilder documentBuilder)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbegin(String namespaceURI, String name, Attributes attributes)Implemented to replace the content handler currently in use by a NodeBuilder.voidend()Pop the Node off the top of the stack.-
Methods inherited from class org.apache.tomcat.util.digester.Rule
begin, body, body, end, finish, getDigester, getNamespaceURI, setDigester, setNamespaceURI
-
-
-
-
Constructor Detail
-
NodeCreateRule
public NodeCreateRule() throws ParserConfigurationExceptionDefault constructor. Creates an instance of this rule that will create a DOMElement.- Throws:
ParserConfigurationException
-
NodeCreateRule
public NodeCreateRule(DocumentBuilder documentBuilder)
Constructor. Creates an instance of this rule that will create a DOMElement, but lets you specify the JAXPDocumentBuilderthat should be used when constructing the node tree.- Parameters:
documentBuilder- the JAXPDocumentBuilderto use
-
NodeCreateRule
public NodeCreateRule(int nodeType) throws ParserConfigurationExceptionConstructor. Creates an instance of this rule that will create either a DOMElementor a DOMDocumentFragment, depending on the value of thenodeTypeparameter.- Parameters:
nodeType- the type of node to create, which can be eitherNode.ELEMENT_NODEorNode.DOCUMENT_FRAGMENT_NODE- Throws:
IllegalArgumentException- if the node type is not supportedParserConfigurationException
-
NodeCreateRule
public NodeCreateRule(int nodeType, DocumentBuilder documentBuilder)Constructor. Creates an instance of this rule that will create either a DOMElementor a DOMDocumentFragment, depending on the value of thenodeTypeparameter. This constructor lets you specify the JAXPDocumentBuilderthat should be used when constructing the node tree.- Parameters:
nodeType- the type of node to create, which can be eitherNode.ELEMENT_NODEorNode.DOCUMENT_FRAGMENT_NODEdocumentBuilder- the JAXPDocumentBuilderto use- Throws:
IllegalArgumentException- if the node type is not supported
-
-
Method Detail
-
begin
public void begin(String namespaceURI, String name, Attributes attributes) throws Exception
Implemented to replace the content handler currently in use by a NodeBuilder.- Overrides:
beginin classRule- Parameters:
namespaceURI- the namespace URI of the matching element, or an empty string if the parser is not namespace aware or the element has no namespacename- the local name if the parser is namespace aware, or just the element name otherwiseattributes- The attribute list of this element- Throws:
Exception- indicates a JAXP configuration problem
-
-