Package groovy.xml
Class DOMBuilder
java.lang.Object
groovy.lang.GroovyObjectSupport
groovy.util.BuilderSupport
groovy.xml.DOMBuilder
- All Implemented Interfaces:
- GroovyObject
A helper class for creating a W3C DOM tree
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidappendNamespaceAttributes(Element element, Map<Object, Object> attributes) protected Documentprotected ObjectcreateNode(Object name) protected ObjectcreateNode(Object name, Object value) protected ObjectcreateNode(Object name, Map attributes) protected ObjectcreateNode(Object name, Map attributes, Object value) static DOMBuilderstatic DOMBuildernewInstance(boolean validating, boolean namespaceAware) static DocumentCreates a DocumentBuilder and uses it to parse the XML text read from the given reader.static DocumentCreates a DocumentBuilder and uses it to parse the XML text read from the given reader, allowing parser validation and namespace awareness to be controlled.static DocumentCreates a DocumentBuilder and uses it to parse the XML text read from the given reader, allowing parser validation, namespace awareness and permission of DOCTYPE declarations to be controlled.A helper method to parse the given text as XML.protected voidMethods inherited from class groovy.util.BuilderSupportdoInvokeMethod, getCurrent, getName, invokeMethod, invokeMethod, nodeCompleted, postNodeCompletion, setClosureDelegate, setCurrentMethods inherited from class groovy.lang.GroovyObjectSupportgetMetaClass, setMetaClassMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface groovy.lang.GroovyObjectgetProperty, setProperty
- 
Constructor Details- 
DOMBuilder
- 
DOMBuilder
 
- 
- 
Method Details- 
newInstance- Throws:
- ParserConfigurationException
 
- 
newInstancepublic static DOMBuilder newInstance(boolean validating, boolean namespaceAware) throws ParserConfigurationException - Throws:
- ParserConfigurationException
 
- 
parsepublic static Document parse(Reader reader) throws SAXException, IOException, ParserConfigurationException Creates a DocumentBuilder and uses it to parse the XML text read from the given reader. A non-validating, namespace aware parser which does not allow DOCTYPE declarations is used.- Parameters:
- reader- the reader to read the XML text from
- Returns:
- the root node of the parsed tree of Nodes
- Throws:
- SAXException- Any SAX exception, possibly wrapping another exception.
- IOException- An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.
- ParserConfigurationException- if a DocumentBuilder cannot be created which satisfies the configuration requested.
- See Also:
 
- 
parsepublic static Document parse(Reader reader, boolean validating, boolean namespaceAware) throws SAXException, IOException, ParserConfigurationException Creates a DocumentBuilder and uses it to parse the XML text read from the given reader, allowing parser validation and namespace awareness to be controlled. Documents are not allowed to contain DOCYTYPE declarations.- Parameters:
- reader- the reader to read the XML text from
- validating- whether to validate the XML
- namespaceAware- whether the parser should be namespace aware
- Returns:
- the root node of the parsed tree of Nodes
- Throws:
- SAXException- Any SAX exception, possibly wrapping another exception.
- IOException- An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.
- ParserConfigurationException- if a DocumentBuilder cannot be created which satisfies the configuration requested.
 
- 
parsepublic static Document parse(Reader reader, boolean validating, boolean namespaceAware, boolean allowDocTypeDeclaration) throws SAXException, IOException, ParserConfigurationException Creates a DocumentBuilder and uses it to parse the XML text read from the given reader, allowing parser validation, namespace awareness and permission of DOCTYPE declarations to be controlled.- Parameters:
- reader- the reader to read the XML text from
- validating- whether to validate the XML
- namespaceAware- whether the parser should be namespace aware
- allowDocTypeDeclaration- whether the parser should allow DOCTYPE declarations
- Returns:
- the root node of the parsed tree of Nodes
- Throws:
- SAXException- Any SAX exception, possibly wrapping another exception.
- IOException- An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.
- ParserConfigurationException- if a DocumentBuilder cannot be created which satisfies the configuration requested.
 
- 
parseTextpublic Document parseText(String text) throws SAXException, IOException, ParserConfigurationException A helper method to parse the given text as XML.- Parameters:
- text- the XML text to parse
- Returns:
- the root node of the parsed tree of Nodes
- Throws:
- SAXException- Any SAX exception, possibly wrapping another exception.
- IOException- An IO exception from the parser, possibly from a byte stream or character stream supplied by the application.
- ParserConfigurationException- if a DocumentBuilder cannot be created which satisfies the configuration requested.
- See Also:
 
- 
setParent- Specified by:
- setParentin class- BuilderSupport
 
- 
createNode- Specified by:
- createNodein class- BuilderSupport
 
- 
createDocument
- 
createNode- Specified by:
- createNodein class- BuilderSupport
 
- 
createNode- Specified by:
- createNodein class- BuilderSupport
 
- 
createNode- Specified by:
- createNodein class- BuilderSupport
 
- 
appendNamespaceAttributes
 
-