public abstract class BaseMarkupSerializer extends java.lang.Object implements org.xml.sax.ContentHandler, org.xml.sax.DocumentHandler, org.xml.sax.ext.LexicalHandler, org.xml.sax.DTDHandler, org.xml.sax.ext.DeclHandler, DOMSerializer, Serializer
The serializer must be initialized with the proper writer and
output format before it can be used by calling setOutputCharStream(java.io.Writer)
or setOutputByteStream(java.io.OutputStream)
for the writer and setOutputFormat(org.apache.xml.serialize.OutputFormat)
for the output format.
The serializer can be reused any number of times, but cannot be used concurrently by two threads.
If an output stream is used, the encoding is taken from the output format (defaults to UTF-8). If a writer is used, make sure the writer uses the same encoding (if applies) as specified in the output format.
The serializer supports both DOM and SAX. DOM serializing is done
by calling serialize(Document)
and SAX serializing is done by firing
SAX events and using the serializer as a document handler.
This also applies to derived class.
If an I/O exception occurs while serializing, the serializer
will not throw an exception directly, but only throw it
at the end of serializing (either DOM or SAX's DocumentHandler.endDocument()
.
For elements that are not specified as whitespace preserving, the serializer will potentially break long text lines at space boundaries, indent lines, and serialize elements on separate lines. Line terminators will be regarded as spaces, and spaces at beginning of line will be stripped.
When indenting, the serializer is capable of detecting seemingly element content, and serializing these elements indented on separate lines. An element is serialized indented when it is the first or last child of an element, or immediate following or preceding another element.
Serializer
,
LSSerializer
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
_docTypePublicId
Deprecated.
The system identifier of the document type, if known.
|
protected java.lang.String |
_docTypeSystemId
Deprecated.
The system identifier of the document type, if known.
|
protected EncodingInfo |
_encodingInfo
Deprecated.
|
protected OutputFormat |
_format
Deprecated.
The output format associated with this serializer.
|
protected boolean |
_indenting
Deprecated.
True if indenting printer.
|
protected java.util.Hashtable |
_prefixes
Deprecated.
Association between namespace URIs (keys) and prefixes (values).
|
protected Printer |
_printer
Deprecated.
The printer used for printing text parts.
|
protected boolean |
_started
Deprecated.
If the document has been started (header serialized), this
flag is set to true so it's not started twice.
|
protected org.w3c.dom.Node |
fCurrentNode
Deprecated.
Current node that is being processed
|
protected org.apache.xerces.dom.DOMErrorImpl |
fDOMError
Deprecated.
|
protected org.w3c.dom.DOMErrorHandler |
fDOMErrorHandler
Deprecated.
|
protected org.w3c.dom.ls.LSSerializerFilter |
fDOMFilter
Deprecated.
|
protected short |
features
Deprecated.
|
protected java.lang.StringBuffer |
fStrBuffer
Deprecated.
Temporary buffer to store character data
|
Modifier | Constructor and Description |
---|---|
protected |
BaseMarkupSerializer(OutputFormat format)
Deprecated.
Protected constructor can only be used by derived class.
|
Modifier and Type | Method and Description |
---|---|
org.xml.sax.ContentHandler |
asContentHandler()
Deprecated.
Return a
ContentHandler interface into this serializer. |
org.xml.sax.DocumentHandler |
asDocumentHandler()
Deprecated.
Return a
DocumentHandler interface into this serializer. |
DOMSerializer |
asDOMSerializer()
Deprecated.
Return a
DOMSerializer interface into this serializer. |
void |
attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Deprecated.
Report an attribute type declaration.
|
void |
characters(char[] chars,
int start,
int length)
Deprecated.
Receive notification of character data.
|
protected void |
characters(java.lang.String text)
Deprecated.
Called to print the text contents in the prevailing element format.
|
protected void |
checkUnboundNamespacePrefixedNode(org.w3c.dom.Node node)
Deprecated.
DOM level 3:
Check a node to determine if it contains unbound namespace prefixes.
|
protected void |
cleanup()
Deprecated.
|
void |
comment(char[] chars,
int start,
int length)
Deprecated.
Report an XML comment anywhere in the document.
|
void |
comment(java.lang.String text)
Deprecated.
|
protected ElementState |
content()
Deprecated.
Must be called by a method about to print any type of content.
|
void |
elementDecl(java.lang.String name,
java.lang.String model)
Deprecated.
Report an element type declaration.
|
void |
endCDATA()
Deprecated.
Report the end of a CDATA section.
|
void |
endDocument()
Deprecated.
Called at the end of the document to wrap it up.
|
void |
endDTD()
Deprecated.
Report the end of DTD declarations.
|
void |
endEntity(java.lang.String name)
Deprecated.
Report the end of an entity.
|
void |
endNonEscaping()
Deprecated.
|
void |
endPrefixMapping(java.lang.String prefix)
Deprecated.
End the scope of a prefix-URI mapping.
|
void |
endPreserving()
Deprecated.
|
protected ElementState |
enterElementState(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String rawName,
boolean preserveSpace)
Deprecated.
Enter a new element state for the specified element.
|
void |
externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Deprecated.
Report a parsed external entity declaration.
|
protected void |
fatalError(java.lang.String message)
Deprecated.
|
protected ElementState |
getElementState()
Deprecated.
Return the state of the current element.
|
protected abstract java.lang.String |
getEntityRef(int ch)
Deprecated.
Returns the suitable entity reference for this character value,
or null if no such entity exists.
|
protected java.lang.String |
getPrefix(java.lang.String namespaceURI)
Deprecated.
Returns the namespace prefix for the specified URI.
|
void |
ignorableWhitespace(char[] chars,
int start,
int length)
Deprecated.
Receive notification of ignorable whitespace in element content.
|
void |
internalEntityDecl(java.lang.String name,
java.lang.String value)
Deprecated.
Report an internal entity declaration.
|
protected boolean |
isDocumentState()
Deprecated.
Returns true if in the state of the document.
|
protected ElementState |
leaveElementState()
Deprecated.
Leave the current element state and return to the
state of the parent element.
|
protected org.w3c.dom.DOMError |
modifyDOMError(java.lang.String message,
short severity,
java.lang.String type,
org.w3c.dom.Node node)
Deprecated.
The method modifies global DOM error object
|
void |
notationDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Deprecated.
Receive notification of a notation declaration event.
|
protected void |
prepare()
Deprecated.
|
protected void |
printCDATAText(java.lang.String text)
Deprecated.
|
protected void |
printDoctypeURL(java.lang.String url)
Deprecated.
Print a document type public or system identifier URL.
|
protected void |
printEscaped(int ch)
Deprecated.
|
protected void |
printEscaped(java.lang.String source)
Deprecated.
Escapes a string so it may be printed as text content or attribute
value.
|
protected void |
printText(char[] chars,
int start,
int length,
boolean preserveSpace,
boolean unescaped)
Deprecated.
Called to print additional text with whitespace handling.
|
protected void |
printText(java.lang.String text,
boolean preserveSpace,
boolean unescaped)
Deprecated.
|
void |
processingInstruction(java.lang.String target,
java.lang.String code)
Deprecated.
Receive notification of a processing instruction.
|
void |
processingInstructionIO(java.lang.String target,
java.lang.String code)
Deprecated.
|
boolean |
reset()
Deprecated.
|
void |
serialize(org.w3c.dom.Document doc)
Deprecated.
Serializes the DOM document using the previously specified
writer and output format.
|
void |
serialize(org.w3c.dom.DocumentFragment frag)
Deprecated.
Serializes the DOM document fragmnt using the previously specified
writer and output format.
|
void |
serialize(org.w3c.dom.Element elem)
Deprecated.
Serializes the DOM element using the previously specified
writer and output format.
|
protected abstract void |
serializeElement(org.w3c.dom.Element elem)
Deprecated.
Called to serializee the DOM element.
|
protected void |
serializeNode(org.w3c.dom.Node node)
Deprecated.
Serialize the DOM node.
|
protected void |
serializePreRoot()
Deprecated.
Comments and PIs cannot be serialized before the root element,
because the root element serializes the document type, which
generally comes first.
|
void |
setDocumentLocator(org.xml.sax.Locator locator)
Deprecated.
Receive an object for locating the origin of SAX document events.
|
void |
setOutputByteStream(java.io.OutputStream output)
Deprecated.
Specifies an output stream to which the document should be
serialized.
|
void |
setOutputCharStream(java.io.Writer writer)
Deprecated.
Specifies a writer to which the document should be serialized.
|
void |
setOutputFormat(OutputFormat format)
Deprecated.
Specifies an output format for this serializer.
|
void |
skippedEntity(java.lang.String name)
Deprecated.
Receive notification of a skipped entity.
|
void |
startCDATA()
Deprecated.
Report the start of a CDATA section.
|
void |
startDocument()
Deprecated.
Receive notification of the beginning of a document.
|
void |
startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Deprecated.
Report the start of DTD declarations, if any.
|
void |
startEntity(java.lang.String name)
Deprecated.
Report the beginning of some internal and external XML entities.
|
void |
startNonEscaping()
Deprecated.
|
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Deprecated.
Begin the scope of a prefix-URI Namespace mapping.
|
void |
startPreserving()
Deprecated.
|
protected void |
surrogates(int high,
int low,
boolean inContent)
Deprecated.
|
void |
unparsedEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Deprecated.
Receive notification of an unparsed entity declaration event.
|
protected short features
protected org.w3c.dom.DOMErrorHandler fDOMErrorHandler
protected final org.apache.xerces.dom.DOMErrorImpl fDOMError
protected org.w3c.dom.ls.LSSerializerFilter fDOMFilter
protected EncodingInfo _encodingInfo
protected boolean _started
protected java.util.Hashtable _prefixes
protected java.lang.String _docTypePublicId
protected java.lang.String _docTypeSystemId
protected OutputFormat _format
protected Printer _printer
protected boolean _indenting
protected final java.lang.StringBuffer fStrBuffer
protected org.w3c.dom.Node fCurrentNode
protected BaseMarkupSerializer(OutputFormat format)
setOutputCharStream(java.io.Writer)
or setOutputByteStream(java.io.OutputStream)
firstpublic org.xml.sax.DocumentHandler asDocumentHandler() throws java.io.IOException
Serializer
DocumentHandler
interface into this serializer.
If the serializer does not support the DocumentHandler
interface, it should return null.asDocumentHandler
in interface Serializer
java.io.IOException
public org.xml.sax.ContentHandler asContentHandler() throws java.io.IOException
Serializer
ContentHandler
interface into this serializer.
If the serializer does not support the ContentHandler
interface, it should return null.asContentHandler
in interface Serializer
java.io.IOException
public DOMSerializer asDOMSerializer() throws java.io.IOException
Serializer
DOMSerializer
interface into this serializer.
If the serializer does not support the DOMSerializer
interface, it should return null.asDOMSerializer
in interface Serializer
java.io.IOException
public void setOutputByteStream(java.io.OutputStream output)
Serializer
setOutputByteStream
in interface Serializer
public void setOutputCharStream(java.io.Writer writer)
Serializer
setOutputCharStream
in interface Serializer
public void setOutputFormat(OutputFormat format)
Serializer
setOutputFormat
in interface Serializer
format
- The output format to usepublic boolean reset()
protected void cleanup()
protected void prepare() throws java.io.IOException
java.io.IOException
public void serialize(org.w3c.dom.Element elem) throws java.io.IOException
serialize
in interface DOMSerializer
elem
- The element to serializejava.io.IOException
- An I/O exception occured while
serializingpublic void serialize(org.w3c.dom.DocumentFragment frag) throws java.io.IOException
serialize
in interface DOMSerializer
frag
- The document fragment to serializejava.io.IOException
- An I/O exception occured while
serializingpublic void serialize(org.w3c.dom.Document doc) throws java.io.IOException
serialize
in interface DOMSerializer
doc
- The document to serializejava.io.IOException
- An I/O exception occured while
serializingpublic void startDocument() throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
The SAX parser will invoke this method only once, before any
other event callbacks (except for setDocumentLocator
).
startDocument
in interface org.xml.sax.ContentHandler
startDocument
in interface org.xml.sax.DocumentHandler
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.ContentHandler.endDocument()
public void characters(char[] chars, int start, int length) throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
The Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.
The application must not attempt to read from the array outside of the specified range.
Individual characters may consist of more than one Java
char
value. There are two important cases where this
happens, because characters can't be represented in just sixteen bits.
In one case, characters are represented in a Surrogate Pair,
using two special Unicode values. Such characters are in the so-called
"Astral Planes", with a code point above U+FFFF. A second case involves
composite characters, such as a base character combining with one or
more accent characters.
Your code should not assume that algorithms using
char
-at-a-time idioms will be working in character
units; in some cases they will split characters. This is relevant
wherever XML permits arbitrary characters, such as attribute values,
processing instruction data, and comments as well as in data reported
from this method. It's also generally relevant whenever Java code
manipulates internationalized text; the issue isn't unique to XML.
Note that some parsers will report whitespace in element
content using the ignorableWhitespace
method rather than this one (validating parsers must
do so).
characters
in interface org.xml.sax.ContentHandler
characters
in interface org.xml.sax.DocumentHandler
chars
- the characters from the XML documentstart
- the start position in the arraylength
- the number of characters to read from the arrayorg.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.ContentHandler.ignorableWhitespace(char[], int, int)
,
Locator
public void ignorableWhitespace(char[] chars, int start, int length) throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
Validating Parsers must use this method to report each chunk of whitespace in element content (see the W3C XML 1.0 recommendation, section 2.10): non-validating parsers may also use this method if they are capable of parsing and using content models.
SAX parsers may return all contiguous whitespace in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity, so that the Locator provides useful information.
The application must not attempt to read from the array outside of the specified range.
ignorableWhitespace
in interface org.xml.sax.ContentHandler
ignorableWhitespace
in interface org.xml.sax.DocumentHandler
chars
- the characters from the XML documentstart
- the start position in the arraylength
- the number of characters to read from the arrayorg.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.ContentHandler.characters(char[], int, int)
public final void processingInstruction(java.lang.String target, java.lang.String code) throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
The Parser will invoke this method once for each processing instruction found: note that processing instructions may occur before or after the main document element.
A SAX parser must never report an XML declaration (XML 1.0, section 2.8) or a text declaration (XML 1.0, section 4.3.1) using this method.
Like characters()
, processing instruction
data may have characters that need more than one char
value.
processingInstruction
in interface org.xml.sax.ContentHandler
processingInstruction
in interface org.xml.sax.DocumentHandler
target
- the processing instruction targetcode
- the processing instruction data, or null if
none was supplied. The data does not include any
whitespace separating it from the targetorg.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.public void processingInstructionIO(java.lang.String target, java.lang.String code) throws java.io.IOException
java.io.IOException
public void comment(char[] chars, int start, int length) throws org.xml.sax.SAXException
org.xml.sax.ext.LexicalHandler
This callback will be used for comments inside or outside the document element, including comments in the external DTD subset (if read). Comments in the DTD must be properly nested inside start/endDTD and start/endEntity events (if used).
comment
in interface org.xml.sax.ext.LexicalHandler
chars
- An array holding the characters in the comment.start
- The starting position in the array.length
- The number of characters to use from the array.org.xml.sax.SAXException
- The application may raise an exception.public void comment(java.lang.String text) throws java.io.IOException
java.io.IOException
public void startCDATA()
org.xml.sax.ext.LexicalHandler
The contents of the CDATA section will be reported through
the regular characters
event; this event is intended only to report
the boundary.
startCDATA
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.endCDATA()
public void endCDATA()
org.xml.sax.ext.LexicalHandler
endCDATA
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.startCDATA()
public void startNonEscaping()
public void endNonEscaping()
public void startPreserving()
public void endPreserving()
public void endDocument() throws org.xml.sax.SAXException
endDocument
in interface org.xml.sax.ContentHandler
endDocument
in interface org.xml.sax.DocumentHandler
org.xml.sax.SAXException
- An I/O exception occured during
serializingContentHandler.startDocument()
public void startEntity(java.lang.String name)
org.xml.sax.ext.LexicalHandler
The reporting of parameter entities (including
the external DTD subset) is optional, and SAX2 drivers that
report LexicalHandler events may not implement it; you can use the
http://xml.org/sax/features/lexical-handler/parameter-entities
feature to query or control the reporting of parameter entities.
General entities are reported with their regular names, parameter entities have '%' prepended to their names, and the external DTD subset has the pseudo-entity name "[dtd]".
When a SAX2 driver is providing these events, all other
events must be properly nested within start/end entity
events. There is no additional requirement that events from
DeclHandler
or
DTDHandler
be properly ordered.
Note that skipped entities will be reported through the
skippedEntity
event, which is part of the ContentHandler interface.
Because of the streaming event model that SAX uses, some entity boundaries cannot be reported under any circumstances:
These will be silently expanded, with no indication of where the original entity boundaries were.
Note also that the boundaries of character references (which are not really entities anyway) are not reported.
All start/endEntity events must be properly nested.
startEntity
in interface org.xml.sax.ext.LexicalHandler
name
- The name of the entity. If it is a parameter
entity, the name will begin with '%', and if it is the
external DTD subset, it will be "[dtd]".LexicalHandler.endEntity(java.lang.String)
,
DeclHandler.internalEntityDecl(java.lang.String, java.lang.String)
,
DeclHandler.externalEntityDecl(java.lang.String, java.lang.String, java.lang.String)
public void endEntity(java.lang.String name)
org.xml.sax.ext.LexicalHandler
endEntity
in interface org.xml.sax.ext.LexicalHandler
name
- The name of the entity that is ending.LexicalHandler.startEntity(java.lang.String)
public void setDocumentLocator(org.xml.sax.Locator locator)
org.xml.sax.ContentHandler
SAX parsers are strongly encouraged (though not absolutely required) to supply a locator: if it does so, it must supply the locator to the application by invoking this method before invoking any of the other methods in the ContentHandler interface.
The locator allows the application to determine the end position of any document-related event, even if the parser is not reporting an error. Typically, the application will use this information for reporting its own errors (such as character content that does not match an application's business rules). The information returned by the locator is probably not sufficient for use with a search engine.
Note that the locator will return correct information only
during the invocation SAX event callbacks after
startDocument
returns and before
endDocument
is called. The
application should not attempt to use it at any other time.
setDocumentLocator
in interface org.xml.sax.ContentHandler
setDocumentLocator
in interface org.xml.sax.DocumentHandler
locator
- an object that can return the location of
any SAX document eventLocator
public void skippedEntity(java.lang.String name) throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
The Parser will invoke this method each time the entity is
skipped. Non-validating processors may skip entities if they
have not seen the declarations (because, for example, the
entity was declared in an external DTD subset). All processors
may skip external entities, depending on the values of the
http://xml.org/sax/features/external-general-entities
and the
http://xml.org/sax/features/external-parameter-entities
properties.
skippedEntity
in interface org.xml.sax.ContentHandler
name
- the name of the skipped entity. If it is a
parameter entity, the name will begin with '%', and if
it is the external DTD subset, it will be the string
"[dtd]"org.xml.sax.SAXException
- any SAX exception, possibly
wrapping another exceptionpublic void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
The information from this event is not necessary for
normal Namespace processing: the SAX XML reader will
automatically replace prefixes for element and attribute
names when the http://xml.org/sax/features/namespaces
feature is true (the default).
There are cases, however, when applications need to use prefixes in character data or in attribute values, where they cannot safely be expanded automatically; the start/endPrefixMapping event supplies the information to the application to expand prefixes in those contexts itself, if necessary.
Note that start/endPrefixMapping events are not
guaranteed to be properly nested relative to each other:
all startPrefixMapping events will occur immediately before the
corresponding startElement
event,
and all endPrefixMapping
events will occur immediately after the corresponding
endElement
event,
but their order is not otherwise
guaranteed.
There should never be start/endPrefixMapping events for the "xml" prefix, since it is predeclared and immutable.
startPrefixMapping
in interface org.xml.sax.ContentHandler
prefix
- the Namespace prefix being declared.
An empty string is used for the default element namespace,
which has no prefix.uri
- the Namespace URI the prefix is mapped toorg.xml.sax.SAXException
- the client may throw
an exception during processingContentHandler.endPrefixMapping(java.lang.String)
,
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
public void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXException
org.xml.sax.ContentHandler
See startPrefixMapping
for
details. These events will always occur immediately after the
corresponding endElement
event, but the order of
endPrefixMapping
events is not otherwise
guaranteed.
endPrefixMapping
in interface org.xml.sax.ContentHandler
prefix
- the prefix that was being mapped.
This is the empty string when a default mapping scope ends.org.xml.sax.SAXException
- the client may throw
an exception during processingContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
,
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
public final void startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
org.xml.sax.ext.LexicalHandler
This method is intended to report the beginning of the DOCTYPE declaration; if the document has no DOCTYPE declaration, this method will not be invoked.
All declarations reported through
DTDHandler
or
DeclHandler
events must appear
between the startDTD and endDTD
events.
Declarations are assumed to belong to the internal DTD subset
unless they appear between startEntity
and endEntity
events. Comments and
processing instructions from the DTD should also be reported
between the startDTD and endDTD events, in their original
order of (logical) occurrence; they are not required to
appear in their correct locations relative to DTDHandler
or DeclHandler events, however.
Note that the start/endDTD events will appear within
the start/endDocument events from ContentHandler and
before the first
startElement
event.
startDTD
in interface org.xml.sax.ext.LexicalHandler
name
- The document type name.publicId
- The declared public identifier for the
external DTD subset, or null if none was declared.systemId
- The declared system identifier for the
external DTD subset, or null if none was declared.
(Note that this is not resolved against the document
base URI.)org.xml.sax.SAXException
- The application may raise an
exception.LexicalHandler.endDTD()
,
LexicalHandler.startEntity(java.lang.String)
public void endDTD()
org.xml.sax.ext.LexicalHandler
This method is intended to report the end of the DOCTYPE declaration; if the document has no DOCTYPE declaration, this method will not be invoked.
endDTD
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.startDTD(java.lang.String, java.lang.String, java.lang.String)
public void elementDecl(java.lang.String name, java.lang.String model) throws org.xml.sax.SAXException
org.xml.sax.ext.DeclHandler
The content model will consist of the string "EMPTY", the string "ANY", or a parenthesised group, optionally followed by an occurrence indicator. The model will be normalized so that all parameter entities are fully resolved and all whitespace is removed,and will include the enclosing parentheses. Other normalization (such as removing redundant parentheses or simplifying occurrence indicators) is at the discretion of the parser.
elementDecl
in interface org.xml.sax.ext.DeclHandler
name
- The element type name.model
- The content model as a normalized string.org.xml.sax.SAXException
- The application may raise an exception.public void attributeDecl(java.lang.String eName, java.lang.String aName, java.lang.String type, java.lang.String valueDefault, java.lang.String value) throws org.xml.sax.SAXException
org.xml.sax.ext.DeclHandler
Only the effective (first) declaration for an attribute will be reported. The type will be one of the strings "CDATA", "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES", a parenthesized token group with the separator "|" and all whitespace removed, or the word "NOTATION" followed by a space followed by a parenthesized token group with all whitespace removed.
The value will be the value as reported to applications, appropriately normalized and with entity and character references expanded.
attributeDecl
in interface org.xml.sax.ext.DeclHandler
eName
- The name of the associated element.aName
- The name of the attribute.type
- A string representing the attribute type.valueDefault
- A string representing the attribute defaulting mode
("#IMPLIED", "#REQUIRED", or "#FIXED") or null if
none of these applies.value
- A string representing the attribute's default value,
or null if there is none.org.xml.sax.SAXException
- The application may raise an exception.public void internalEntityDecl(java.lang.String name, java.lang.String value) throws org.xml.sax.SAXException
org.xml.sax.ext.DeclHandler
Only the effective (first) declaration for each entity will be reported. All parameter entities in the value will be expanded, but general entities will not.
internalEntityDecl
in interface org.xml.sax.ext.DeclHandler
name
- The name of the entity. If it is a parameter
entity, the name will begin with '%'.value
- The replacement text of the entity.org.xml.sax.SAXException
- The application may raise an exception.DeclHandler.externalEntityDecl(java.lang.String, java.lang.String, java.lang.String)
,
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
public void externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
org.xml.sax.ext.DeclHandler
Only the effective (first) declaration for each entity will be reported.
If the system identifier is a URL, the parser must resolve it fully before passing it to the application.
externalEntityDecl
in interface org.xml.sax.ext.DeclHandler
name
- The name of the entity. If it is a parameter
entity, the name will begin with '%'.publicId
- The entity's public identifier, or null if none
was given.systemId
- The entity's system identifier.org.xml.sax.SAXException
- The application may raise an exception.DeclHandler.internalEntityDecl(java.lang.String, java.lang.String)
,
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
public void unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName) throws org.xml.sax.SAXException
org.xml.sax.DTDHandler
Note that the notation name corresponds to a notation
reported by the notationDecl
event.
It is up to the application to record the entity for later
reference, if necessary;
unparsed entities may appear as attribute values.
If the system identifier is a URL, the parser must resolve it fully before passing it to the application.
unparsedEntityDecl
in interface org.xml.sax.DTDHandler
name
- The unparsed entity's name.publicId
- The entity's public identifier, or null if none
was given.systemId
- The entity's system identifier.notationName
- The name of the associated notation.org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)
,
Attributes
public void notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
org.xml.sax.DTDHandler
It is up to the application to record the notation for later reference, if necessary; notations may appear as attribute values and in unparsed entity declarations, and are sometime used with processing instruction target names.
At least one of publicId and systemId must be non-null. If a system identifier is present, and it is a URL, the SAX parser must resolve it fully before passing it to the application through this event.
There is no guarantee that the notation declaration will be reported before any unparsed entities that use it.
notationDecl
in interface org.xml.sax.DTDHandler
name
- The notation name.publicId
- The notation's public identifier, or null if
none was given.systemId
- The notation's system identifier, or null if
none was given.org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
,
Attributes
protected void serializeNode(org.w3c.dom.Node node) throws java.io.IOException
serializeElement(org.w3c.dom.Element)
.node
- The node to serializejava.io.IOException
- An I/O exception occured while
serializingserializeElement(org.w3c.dom.Element)
protected ElementState content() throws java.io.IOException
java.io.IOException
- An I/O exception occurred while
serializingprotected void characters(java.lang.String text) throws java.io.IOException
text
- The text to printjava.io.IOException
- An I/O exception occured while
serializingprotected abstract java.lang.String getEntityRef(int ch)
ch
- Character valueprotected abstract void serializeElement(org.w3c.dom.Element elem) throws java.io.IOException
elem
- The element to serializejava.io.IOException
- An I/O exception occured while
serializingprotected void serializePreRoot() throws java.io.IOException
java.io.IOException
- An I/O exception occured while
serializingprotected void printCDATAText(java.lang.String text) throws java.io.IOException
java.io.IOException
protected void surrogates(int high, int low, boolean inContent) throws java.io.IOException
java.io.IOException
protected void printText(char[] chars, int start, int length, boolean preserveSpace, boolean unescaped) throws java.io.IOException
printText(String,boolean,boolean)
with a call to Printer.breakLine()
for each new line. If spaces are not preserved, the text is
broken at space boundaries if longer than the line width;
Multiple spaces are printed as such, but spaces at beginning
of line are removed.chars
- The text to printstart
- The start offsetlength
- The number of characterspreserveSpace
- Space preserving flagunescaped
- Print unescapedjava.io.IOException
protected void printText(java.lang.String text, boolean preserveSpace, boolean unescaped) throws java.io.IOException
java.io.IOException
protected void printDoctypeURL(java.lang.String url) throws java.io.IOException
printText(char[], int, int, boolean, boolean)
.url
- The document type url to printjava.io.IOException
protected void printEscaped(int ch) throws java.io.IOException
java.io.IOException
protected void printEscaped(java.lang.String source) throws java.io.IOException
source
- The string to escapejava.io.IOException
protected ElementState getElementState()
protected ElementState enterElementState(java.lang.String namespaceURI, java.lang.String localName, java.lang.String rawName, boolean preserveSpace)
protected ElementState leaveElementState()
protected boolean isDocumentState()
protected java.lang.String getPrefix(java.lang.String namespaceURI)
namespaceURI
- The namespace URIprotected org.w3c.dom.DOMError modifyDOMError(java.lang.String message, short severity, java.lang.String type, org.w3c.dom.Node node)
message
- severity
- type
- protected void fatalError(java.lang.String message) throws java.io.IOException
java.io.IOException
protected void checkUnboundNamespacePrefixedNode(org.w3c.dom.Node node) throws java.io.IOException
node
- The node to check for unbound namespace preficesjava.io.IOException
Copyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.