Uses of Class
javax.xml.parsers.DocumentBuilder
-
Packages that use DocumentBuilder Package Description javax.xml.bind.annotation Defines annotations for customizing Java program elements to XML Schema mapping.javax.xml.parsers Provides the classes for processing XML documents with a SAX (Simple API for XML) parser or a DOM (Document Object Model) Document builder. -
-
Uses of DocumentBuilder in javax.xml.bind.annotation
Methods in javax.xml.bind.annotation that return DocumentBuilder Modifier and Type Method Description DocumentBuilder
W3CDomHandler. getBuilder()
Methods in javax.xml.bind.annotation with parameters of type DocumentBuilder Modifier and Type Method Description void
W3CDomHandler. setBuilder(DocumentBuilder builder)
Constructors in javax.xml.bind.annotation with parameters of type DocumentBuilder Constructor Description W3CDomHandler(DocumentBuilder builder)
Constructor that allows applications to specify which DOM implementation to be used. -
Uses of DocumentBuilder in javax.xml.parsers
Methods in javax.xml.parsers that return DocumentBuilder Modifier and Type Method Description abstract DocumentBuilder
DocumentBuilderFactory. newDocumentBuilder()
Creates a new instance of aDocumentBuilder
using the currently configured parameters.
-