Module org.eclipse.persistence.core
Class SAXDocumentBuilder
java.lang.Object
org.eclipse.persistence.platform.xml.SAXDocumentBuilder
- All Implemented Interfaces:
ExtendedContentHandler
,ContentHandler
,LexicalHandler
- Direct Known Subclasses:
JAXBUnmarshallerHandler
,SAXFragmentBuilder
,XMLUnmarshallerHandler
Purpose: Build a DOM from SAX events.
-
Field Summary
Modifier and TypeFieldDescriptionprotected Document
protected Locator
protected Map
protected StrBuffer
protected XMLPlatform
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
addNamespaceDeclaration
(Element parentElement, String prefix, String uri) void
appendChildNode
(Node parentNode, Node childNode) void
characters
(char[] ch, int start, int length) void
characters
(CharSequence characters) void
comment
(char[] ch, int start, int length) void
endCDATA()
void
void
endDTD()
void
endElement
(String namespaceURI, String localName, String qName) void
void
endPrefixMapping
(String prefix) void
ignorableWhitespace
(char[] ch, int start, int length) void
processingInstruction
(String target, String data) void
setDocumentLocator
(Locator locator) void
setNil
(boolean isNil) This method can be used to track that the current element is nilvoid
skippedEntity
(String name) void
void
void
void
startElement
(String namespaceURI, String localName, String qName, Attributes atts) void
startEntity
(String name) void
startPrefixMapping
(String prefix, String uri) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.xml.sax.ContentHandler
declaration
-
Field Details
-
document
-
nodes
-
xmlPlatform
-
namespaceDeclarations
-
stringBuffer
-
locator
-
-
Constructor Details
-
SAXDocumentBuilder
public SAXDocumentBuilder()
-
-
Method Details
-
getDocument
-
getInitializedDocument
- Throws:
SAXException
-
setDocumentLocator
- Specified by:
setDocumentLocator
in interfaceContentHandler
-
startDocument
- Specified by:
startDocument
in interfaceContentHandler
- Throws:
SAXException
-
endDocument
- Specified by:
endDocument
in interfaceContentHandler
- Throws:
SAXException
-
startPrefixMapping
- Specified by:
startPrefixMapping
in interfaceContentHandler
- Throws:
SAXException
-
endPrefixMapping
- Specified by:
endPrefixMapping
in interfaceContentHandler
- Throws:
SAXException
-
startElement
public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException - Specified by:
startElement
in interfaceContentHandler
- Throws:
SAXException
-
endElement
- Specified by:
endElement
in interfaceContentHandler
- Throws:
SAXException
-
characters
- Specified by:
characters
in interfaceContentHandler
- Throws:
SAXException
-
characters
- Specified by:
characters
in interfaceExtendedContentHandler
-
ignorableWhitespace
- Specified by:
ignorableWhitespace
in interfaceContentHandler
- Throws:
SAXException
-
processingInstruction
- Specified by:
processingInstruction
in interfaceContentHandler
- Throws:
SAXException
-
skippedEntity
- Specified by:
skippedEntity
in interfaceContentHandler
- Throws:
SAXException
-
addNamespaceDeclaration
-
appendChildNode
-
setNil
public void setNil(boolean isNil) Description copied from interface:ExtendedContentHandler
This method can be used to track that the current element is nil- Specified by:
setNil
in interfaceExtendedContentHandler
-
startDTD
- Specified by:
startDTD
in interfaceLexicalHandler
- Throws:
SAXException
-
endDTD
- Specified by:
endDTD
in interfaceLexicalHandler
- Throws:
SAXException
-
startEntity
- Specified by:
startEntity
in interfaceLexicalHandler
- Throws:
SAXException
-
endEntity
- Specified by:
endEntity
in interfaceLexicalHandler
- Throws:
SAXException
-
startCDATA
- Specified by:
startCDATA
in interfaceLexicalHandler
- Throws:
SAXException
-
endCDATA
- Specified by:
endCDATA
in interfaceLexicalHandler
- Throws:
SAXException
-
comment
- Specified by:
comment
in interfaceLexicalHandler
- Throws:
SAXException
-