|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xml.serializer.SerializerBase org.apache.xml.serializer.ToStream
public abstract class ToStream
This abstract class is a base class for other stream serializers (xml, html, text ...) that write output to a stream.
Nested Class Summary | |
---|---|
(package private) static class |
ToStream.BoolStack
Simple stack for boolean values. |
private static class |
ToStream.WritertoStringBuffer
This inner class is used only to collect attribute values written by the method writeAttrString() into a string buffer. |
Field Summary | |
---|---|
private static java.lang.String |
COMMENT_BEGIN
|
private static java.lang.String |
COMMENT_END
|
protected boolean |
m_cdataStartCalled
remembers if we are in between the startCDATA() and endCDATA() callbacks |
protected CharInfo |
m_charInfo
Map that tells which characters should have special treatment, and it provides character to entity name lookup. |
protected ToStream.BoolStack |
m_disableOutputEscapingStates
Stack to keep track of disabling output escaping. |
(package private) EncodingInfo |
m_encodingInfo
The encoding information associated with this serializer. |
protected boolean |
m_escaping
Taken from XSLTC |
private boolean |
m_expandDTDEntities
If this flag is true DTD entity references are not left as-is, which is exiting older behavior. |
protected boolean |
m_inDoctype
Tells if we're in an internal document type subset. |
protected boolean |
m_ispreserve
State flag to tell if preservation of whitespace is important. |
protected boolean |
m_isprevtext
State flag that tells if the previous node processed was text, so we can tell if we should preserve whitespace. |
(package private) boolean |
m_isUTF8
Flag to quickly tell if the encoding is UTF8. |
protected char[] |
m_lineSep
The system line separator for writing out line breaks. |
protected int |
m_lineSepLen
The length of the line seperator, since the write is done one character at a time. |
protected boolean |
m_lineSepUse
True if the the system line separator is to be used. |
(package private) java.io.OutputStream |
m_outputStream
|
protected ToStream.BoolStack |
m_preserves
Stack to keep track of whether or not we need to preserve whitespace. |
(package private) boolean |
m_shouldFlush
True if we control the buffer, and we should flush the output on endDocument. |
protected boolean |
m_spaceBeforeClose
Add space before '/>' for XHTML. |
(package private) boolean |
m_startNewLine
Flag to signal that a newline should be added. |
private boolean |
m_writer_set_by_user
|
private static char[] |
s_systemLineSep
|
Fields inherited from class org.apache.xml.serializer.SerializerBase |
---|
m_attrBuff, m_attributes, m_CdataElems, m_cdataTagOpen, m_charsBuff, m_docIsEmpty, m_doctypePublic, m_doctypeSystem, m_doIndent, m_elemContext, m_indentAmount, m_inEntityRef, m_inExternalDTD, m_mediatype, m_needToCallStartDocument, m_needToOutputDocTypeDecl, m_prefixMap, m_shouldNotWriteXMLHeader, m_sourceLocator, m_standaloneWasSpecified, m_StringOfCDATASections, m_tracer, m_version, m_writer, PKG_NAME, PKG_PATH |
Fields inherited from interface org.apache.xml.serializer.ExtendedContentHandler |
---|
HTML_ATTREMPTY, HTML_ATTRURL, NO_BAD_CHARS |
Fields inherited from interface org.apache.xml.serializer.SerializerConstants |
---|
CDATA_CONTINUE, CDATA_DELIMITER_CLOSE, CDATA_DELIMITER_OPEN, DEFAULT_SAX_SERIALIZER, EMPTYSTRING, ENTITY_AMP, ENTITY_CRLF, ENTITY_GT, ENTITY_LT, ENTITY_QUOT, XML_PREFIX, XMLNS_PREFIX, XMLNS_URI, XMLVERSION10, XMLVERSION11 |
Constructor Summary | |
---|---|
ToStream()
Default constructor |
Method Summary | |
---|---|
(package private) int |
accumDefaultEntity(java.io.Writer writer,
char ch,
int i,
char[] chars,
int len,
boolean fromTextNode,
boolean escLF)
Handle one of the default entities, return false if it is not a default entity. |
private int |
accumDefaultEscape(java.io.Writer writer,
char ch,
int i,
char[] chars,
int len,
boolean fromTextNode,
boolean escLF)
Escape and writer.write a character. |
boolean |
addAttributeAlways(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
java.lang.String type,
java.lang.String value,
boolean xslAttribute)
Adds the given attribute to the set of attributes, even if there is no currently open element. |
private void |
addCdataSectionElement(java.lang.String URI_and_localName,
java.util.Vector v)
Adds a URI/LocalName pair of strings to the list. |
void |
addCdataSectionElements(java.lang.String URI_and_localNames)
Remembers the cdata sections specified in the cdata-section-elements by appending the given cdata section elements to the list. |
void |
attributeDecl(java.lang.String eName,
java.lang.String aName,
java.lang.String type,
java.lang.String valueDefault,
java.lang.String value)
Report an attribute type declaration. |
protected void |
cdata(char[] ch,
int start,
int length)
Receive notification of cdata. |
void |
characters(char[] chars,
int start,
int length)
Receive notification of character data. |
void |
characters(java.lang.String s)
Receive notification of character data. |
protected void |
charactersRaw(char[] ch,
int start,
int length)
If available, when the disable-output-escaping attribute is used, output raw text without escaping. |
protected void |
closeCDATA()
This helper method to writes out "]]>" when closing a CDATA section. |
protected void |
closeStartTag()
For the enclosing elements starting tag write out out any attributes followed by ">" |
void |
comment(char[] ch,
int start,
int length)
Receive notification of an XML comment anywhere in the document. |
private void |
DTDprolog()
A private helper method to output the |
void |
elementDecl(java.lang.String name,
java.lang.String model)
Report an element type declaration. |
void |
endCDATA()
Report the end of a CDATA section. |
void |
endDTD()
Report the end of DTD declarations. |
void |
endElement(java.lang.String name)
Receive notification of the end of an element. |
void |
endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name)
Receive notification of the end of an element. |
void |
endNonEscaping()
Ends an un-escaping section. |
void |
endPrefixMapping(java.lang.String prefix)
End the scope of a prefix-URI Namespace mapping. |
protected java.lang.String |
ensureAttributesNamespaceIsDeclared(java.lang.String ns,
java.lang.String localName,
java.lang.String rawName)
Makes sure that the namespace URI for the given qualified attribute name is declared. |
(package private) void |
ensurePrefixIsDeclared(java.lang.String ns,
java.lang.String rawName)
|
protected boolean |
escapingNotNeeded(char ch)
Tell if this character can be written without escaping. |
void |
externalEntityDecl(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report a parsed external entity declaration. |
protected void |
firePseudoAttributes()
To fire off the pseudo characters of attributes, as they currently exist. |
void |
flushPending()
This method flushes any pending events, which can be startDocument() closing the opening tag of an element, or closing an open CDATA section. |
protected void |
flushWriter()
Flush the formatter's result stream. |
int |
getIndentAmount()
Returns the m_indentAmount. |
java.util.Properties |
getOutputFormat()
Returns the output format for this serializer. |
java.io.OutputStream |
getOutputStream()
Get the output stream where the events will be serialized to. |
java.io.Writer |
getWriter()
Get the character stream where the events will be serialized to. |
void |
ignorableWhitespace(char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content. |
protected void |
indent()
Indent at the current element nesting depth. |
protected void |
indent(int depth)
Might print a newline character and the indentation amount of the given depth. |
void |
internalEntityDecl(java.lang.String name,
java.lang.String value)
Report an internal entity declaration. |
private static boolean |
isCharacterInC0orC1Range(char ch)
This method checks if a given character is between C0 or C1 range of Control characters. |
private boolean |
isEscapingDisabled()
Tell if the character escaping should be disabled for the current state. |
private static boolean |
isNELorLSEPCharacter(char ch)
This method checks if a given character either NEL (0x85) or LSEP (0x2028) These are new end of line charcters added in XML 1.1. |
void |
notationDecl(java.lang.String name,
java.lang.String pubID,
java.lang.String sysID)
If this method is called, the serializer is used as a DTDHandler, which changes behavior how the serializer handles document entities. |
(package private) void |
outputDocTypeDecl(java.lang.String name,
boolean closeDecl)
Output the doc type declaration. |
(package private) void |
outputEntityDecl(java.lang.String name,
java.lang.String value)
Output the doc type declaration. |
protected void |
outputLineSep()
Output a system-dependent line break. |
private void |
printSpace(int n)
Prints n spaces. |
void |
processAttributes(java.io.Writer writer,
int nAttrs)
Process the attributes, which means to write out the currently collected attributes to the writer. |
private int |
processDirty(char[] chars,
int end,
int i,
char ch,
int lastDirty,
boolean fromTextNode)
Process a dirty character and any preeceding clean characters that were not yet processed. |
private int |
processLineFeed(char[] chars,
int i,
int lastProcessed,
java.io.Writer writer)
|
boolean |
reset()
Try's to reset the super class and reset this class for re-use, so that you don't need to create a new serializer (mostly for performance reasons). |
private void |
resetToStream()
Reset all of the fields owned by ToStream class |
void |
serialize(org.w3c.dom.Node node)
Serializes the DOM node. |
private void |
setCdataSectionElements(java.lang.String key,
java.util.Properties props)
Searches for the list of qname properties with the specified key in the property list. |
void |
setCdataSectionElements(java.util.Vector URI_and_localNames)
Remembers the cdata sections specified in the cdata-section-elements. |
void |
setContentHandler(org.xml.sax.ContentHandler ch)
Set the SAX Content handler that the serializer sends its output to. |
void |
setDTDEntityExpansion(boolean expand)
If set to false the serializer does not expand DTD entities, but leaves them as is, the default value is true; |
void |
setEncoding(java.lang.String encoding)
Sets the character encoding coming from the xsl:output encoding stylesheet attribute. |
boolean |
setEscaping(boolean escape)
Turns special character escaping on/off. |
void |
setIndentAmount(int m_indentAmount)
Sets the m_indentAmount. |
boolean |
setLineSepUse(boolean use_sytem_line_break)
Set if the operating systems end-of-line line separator should be used when serializing. |
void |
setNewLine(char[] eolChars)
Sets the end of line characters to be used during serialization |
void |
setOutputFormat(java.util.Properties format)
Specifies an output format for this serializer. |
void |
setOutputStream(java.io.OutputStream output)
Specifies an output stream to which the document should be serialized. |
private void |
setOutputStreamInternal(java.io.OutputStream output,
boolean setByUser)
|
(package private) void |
setProp(java.lang.String name,
java.lang.String val,
boolean defaultVal)
|
void |
setTransformer(javax.xml.transform.Transformer transformer)
Sets the transformer associated with this serializer |
void |
setWriter(java.io.Writer writer)
Specifies a writer to which the document should be serialized. |
private void |
setWriterInternal(java.io.Writer writer,
boolean setByUser)
|
protected boolean |
shouldIndent()
Tell if, based on space preservation constraints and the doIndent property, if an indent should occur. |
void |
skippedEntity(java.lang.String name)
Receive notification of a skipped entity. |
void |
startCDATA()
Report the start of a CDATA section. |
void |
startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Report the start of DTD declarations, if any. |
void |
startElement(java.lang.String elementName)
This method is used to notify of the start of an element |
void |
startElement(java.lang.String elementNamespaceURI,
java.lang.String elementLocalName,
java.lang.String elementName)
Receive notification of the beginning of an element, additional namespace or attribute information can occur before or after this call, that is associated with this element. |
void |
startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
org.xml.sax.Attributes atts)
Receive notification of the beginning of an element, although this is a SAX method additional namespace or attribute information can occur before or after this call, that is associated with this element. |
void |
startEntity(java.lang.String name)
Report the beginning of an entity. |
void |
startNonEscaping()
Starts an un-escaping section. |
void |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri)
Begin the scope of a prefix-URI Namespace mapping just before another element is about to start. |
boolean |
startPrefixMapping(java.lang.String prefix,
java.lang.String uri,
boolean shouldFlush)
Handle a prefix/uri mapping, which is associated with a startElement() that is soon to follow. |
void |
unparsedEntityDecl(java.lang.String name,
java.lang.String pubID,
java.lang.String sysID,
java.lang.String notationName)
If this method is called, the serializer is used as a DTDHandler, which changes behavior how the serializer handles document entities. |
void |
writeAttrString(java.io.Writer writer,
java.lang.String string,
java.lang.String encoding)
Returns the specified string after substituting specials, and UTF-16 surrogates for chracter references &#xnn . |
(package private) void |
writeNormalizedChars(char[] ch,
int start,
int length,
boolean isCData,
boolean useSystemLineSeparator)
Normalize the characters, but don't escape. |
private void |
writeOutCleanChars(char[] chars,
int i,
int lastProcessed)
|
protected int |
writeUTF16Surrogate(char c,
char[] ch,
int i,
int end)
Once a surrogate has been detected, write out the pair of characters if it is in the encoding, or if there is no encoding, otherwise write out an entity reference of the value of the unicode code point of the character represented by the high/low surrogate pair. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.xml.serializer.ExtendedContentHandler |
---|
addUniqueAttribute |
Methods inherited from interface org.xml.sax.ContentHandler |
---|
endDocument, processingInstruction |
Field Detail |
---|
private static final java.lang.String COMMENT_BEGIN
private static final java.lang.String COMMENT_END
protected ToStream.BoolStack m_disableOutputEscapingStates
EncodingInfo m_encodingInfo
protected ToStream.BoolStack m_preserves
protected boolean m_ispreserve
protected boolean m_isprevtext
private static final char[] s_systemLineSep
protected char[] m_lineSep
protected boolean m_lineSepUse
protected int m_lineSepLen
protected CharInfo m_charInfo
boolean m_shouldFlush
protected boolean m_spaceBeforeClose
boolean m_startNewLine
protected boolean m_inDoctype
boolean m_isUTF8
protected boolean m_cdataStartCalled
private boolean m_expandDTDEntities
protected boolean m_escaping
java.io.OutputStream m_outputStream
private boolean m_writer_set_by_user
Constructor Detail |
---|
public ToStream()
Method Detail |
---|
protected void closeCDATA() throws org.xml.sax.SAXException
org.xml.sax.SAXException
public void serialize(org.w3c.dom.Node node) throws java.io.IOException
node
- Node to serialize.
java.io.IOException
- An I/O exception occured while serializingprotected final void flushWriter() throws org.xml.sax.SAXException
org.xml.sax.SAXException
public java.io.OutputStream getOutputStream()
public void elementDecl(java.lang.String name, java.lang.String model) throws org.xml.sax.SAXException
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 whitespace is removed,and will include the enclosing parentheses.
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 internalEntityDecl(java.lang.String name, java.lang.String value) throws org.xml.sax.SAXException
Only the effective (first) declaration for each entity will be reported.
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.externalEntityDecl(java.lang.String, java.lang.String, java.lang.String)
,
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
void outputEntityDecl(java.lang.String name, java.lang.String value) throws java.io.IOException
name
- non-null reference to document type name.
NEEDSDOC @param value
org.xml.sax.SAXException
java.io.IOException
protected final void outputLineSep() throws java.io.IOException
org.xml.sax.SAXException
java.io.IOException
void setProp(java.lang.String name, java.lang.String val, boolean defaultVal)
setProp
in class SerializerBase
name
- The name of the property, e.g. "{http://myprop}indent-tabs" or "indent".val
- The value of the property, e.g. "4"defaultVal
- true if this is a default value being set for the property as
opposed to a user define on, set say explicitly in the stylesheet or via JAXPpublic void setOutputFormat(java.util.Properties format)
format
- The output format to usepublic java.util.Properties getOutputFormat()
public void setWriter(java.io.Writer writer)
writer
- The output writer streamprivate void setWriterInternal(java.io.Writer writer, boolean setByUser)
public boolean setLineSepUse(boolean use_sytem_line_break)
use_sytem_line_break
- True if an input NL is replaced with the
operating systems end-of-line separator.
public void setOutputStream(java.io.OutputStream output)
The encoding specified in the output properties is used, or if no encoding was specified, the default for the selected output method.
output
- The output streamprivate void setOutputStreamInternal(java.io.OutputStream output, boolean setByUser)
public boolean setEscaping(boolean escape)
SerializationHandler
escape
- true if escaping is to be set on.SerializationHandler.setEscaping(boolean)
protected void indent(int depth) throws java.io.IOException
depth
- the indentation depth (element nesting depth)
org.xml.sax.SAXException
- if an error occurs during writing.
java.io.IOException
protected void indent() throws java.io.IOException
java.io.IOException
private void printSpace(int n) throws java.io.IOException
n
- Number of spaces to print.
org.xml.sax.SAXException
- if an error occurs when writing.
java.io.IOException
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
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", or "NOTATION", or a parenthesized token group with the separator "|" and all whitespace removed.
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 default
("#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 java.io.Writer getWriter()
public void externalEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
Only the effective (first) declaration for each entity will be reported.
name
- The name of the entity. If it is a parameter
entity, the name will begin with '%'.publicId
- The declared public identifier of the entity, or
null if none was declared.systemId
- The declared system identifier of the entity.
org.xml.sax.SAXException
- The application may raise an exception.internalEntityDecl(java.lang.String, java.lang.String)
,
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
protected boolean escapingNotNeeded(char ch)
protected int writeUTF16Surrogate(char c, char[] ch, int i, int end) throws java.io.IOException
An exception is thrown if there is no low surrogate in the pair, because the array ends unexpectely, or if the low char is there but its value is such that it is not a low surrogate.
c
- the first (high) part of the surrogate, which
must be confirmed before calling this method.ch
- Character array.i
- position Where the surrogate was detected.end
- The end index of the significant characters.
java.io.IOException
org.xml.sax.SAXException
- if invalid UTF-16 surrogate detected.int accumDefaultEntity(java.io.Writer writer, char ch, int i, char[] chars, int len, boolean fromTextNode, boolean escLF) throws java.io.IOException
ch
- character to be escaped.i
- index into character array.chars
- non-null reference to character array.len
- length of chars.fromTextNode
- true if the characters being processed
are from a text node, false if they are from an attribute valueescLF
- true if the linefeed should be escaped.
java.io.IOException
void writeNormalizedChars(char[] ch, int start, int length, boolean isCData, boolean useSystemLineSeparator) throws java.io.IOException, org.xml.sax.SAXException
ch
- The characters from the XML document.start
- The start position in the array.length
- The number of characters to read from the array.isCData
- true if a CDATA block should be built around the characters.useSystemLineSeparator
- true if the operating systems
end-of-line separator should be output rather than a new-line character.
java.io.IOException
org.xml.sax.SAXException
public void endNonEscaping() throws org.xml.sax.SAXException
org.xml.sax.SAXException
startNonEscaping()
public void startNonEscaping() throws org.xml.sax.SAXException
The contents of the un-escaping section will be delivered through the regular characters event.
org.xml.sax.SAXException
protected void cdata(char[] ch, int start, int length) throws org.xml.sax.SAXException
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.
Note that some parsers will report whitespace using the ignorableWhitespace() method rather than this one (validating parsers must do so).
ch
- The characters from the XML document.start
- The start position in the array.length
- The number of characters to read from the array.
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.
org.xml.sax.SAXException
ignorableWhitespace(char[], int, int)
,
Locator
private boolean isEscapingDisabled()
protected void charactersRaw(char[] ch, int start, int length) throws org.xml.sax.SAXException
ch
- The characters from the XML document.start
- The start position in the array.length
- The number of characters to read from the array.
org.xml.sax.SAXException
public void characters(char[] chars, int start, int length) throws org.xml.sax.SAXException
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.
Note that some parsers will report whitespace using the ignorableWhitespace() method rather than this one (validating parsers must do so).
chars
- The characters from the XML document.start
- The start position in the array.length
- The number of characters to read from the array.
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.
org.xml.sax.SAXException
ignorableWhitespace(char[], int, int)
,
Locator
private int processLineFeed(char[] chars, int i, int lastProcessed, java.io.Writer writer) throws java.io.IOException
java.io.IOException
private void writeOutCleanChars(char[] chars, int i, int lastProcessed) throws java.io.IOException
java.io.IOException
private static boolean isCharacterInC0orC1Range(char ch)
ch
-
private static boolean isNELorLSEPCharacter(char ch)
ch
-
private int processDirty(char[] chars, int end, int i, char ch, int lastDirty, boolean fromTextNode) throws java.io.IOException
chars
- array of characters being processedend
- one (1) beyond the last character
in chars to be processedi
- the index of the dirty characterch
- the character in chars[i]lastDirty
- the last dirty character previous to ifromTextNode
- true if the characters being processed are
from a text node, false if they are from an attribute value.
java.io.IOException
public void characters(java.lang.String s) throws org.xml.sax.SAXException
s
- The string of characters to process.
org.xml.sax.SAXException
private int accumDefaultEscape(java.io.Writer writer, char ch, int i, char[] chars, int len, boolean fromTextNode, boolean escLF) throws java.io.IOException
ch
- character to be escaped.i
- index into character array.chars
- non-null reference to character array.len
- length of chars.fromTextNode
- true if the characters being processed are
from a text node, false if the characters being processed are from
an attribute value.escLF
- true if the linefeed should be escaped.
org.xml.sax.SAXException
java.io.IOException
public void startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String name, org.xml.sax.Attributes atts) throws org.xml.sax.SAXException
namespaceURI
- The Namespace URI, or the empty string if the
element has no Namespace URI or if Namespace
processing is not being performed.localName
- The local name (without prefix), or the
empty string if Namespace processing is not being
performed.name
- The element type name.atts
- The attributes attached to the element, if any.
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.
org.xml.sax.SAXException
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
,
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
,
AttributeList
public void startElement(java.lang.String elementNamespaceURI, java.lang.String elementLocalName, java.lang.String elementName) throws org.xml.sax.SAXException
elementNamespaceURI
- The Namespace URI, or the empty string if the
element has no Namespace URI or if Namespace
processing is not being performed.elementLocalName
- The local name (without prefix), or the
empty string if Namespace processing is not being
performed.elementName
- The element type name.
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.
org.xml.sax.SAXException
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
,
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
,
AttributeList
public void startElement(java.lang.String elementName) throws org.xml.sax.SAXException
ExtendedContentHandler
elementName
- the fully qualified name of the element
org.xml.sax.SAXException
void outputDocTypeDecl(java.lang.String name, boolean closeDecl) throws org.xml.sax.SAXException
name
- non-null reference to document type name.
NEEDSDOC @param closeDecl
java.io.IOException
org.xml.sax.SAXException
public void processAttributes(java.io.Writer writer, int nAttrs) throws java.io.IOException, org.xml.sax.SAXException
writer
- the writer to write processed attributes to.nAttrs
- the number of attributes in m_attributes
to be processed
java.io.IOException
org.xml.sax.SAXException
public void writeAttrString(java.io.Writer writer, java.lang.String string, java.lang.String encoding) throws java.io.IOException
&#xnn
.
string
- String to convert to XML format.encoding
- CURRENTLY NOT IMPLEMENTED.
java.io.IOException
public void endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String name) throws org.xml.sax.SAXException
namespaceURI
- The Namespace URI, or the empty string if the
element has no Namespace URI or if Namespace
processing is not being performed.localName
- The local name (without prefix), or the
empty string if Namespace processing is not being
performed.name
- The element type name
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.
org.xml.sax.SAXException
public void endElement(java.lang.String name) throws org.xml.sax.SAXException
name
- The element type name
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.public void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXException
prefix
- The Namespace prefix being declared.uri
- The Namespace URI the prefix is mapped to.
org.xml.sax.SAXException
- The client may throw
an exception during processing.ContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
public boolean startPrefixMapping(java.lang.String prefix, java.lang.String uri, boolean shouldFlush) throws org.xml.sax.SAXException
prefix
- The Namespace prefix being declared.uri
- The Namespace URI the prefix is mapped to.shouldFlush
- true if any open tags need to be closed first, this
will impact which element the mapping applies to (open parent, or its up
comming child)
org.xml.sax.SAXException
- The client may throw
an exception during processing.ExtendedContentHandler.startPrefixMapping(java.lang.String, java.lang.String, boolean)
public void comment(char[] ch, int start, int length) throws org.xml.sax.SAXException
ch
- 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 endCDATA() throws org.xml.sax.SAXException
org.xml.sax.SAXException
- The application may raise an exception.startCDATA()
public void endDTD() throws org.xml.sax.SAXException
org.xml.sax.SAXException
- The application may raise an exception.startDTD(java.lang.String, java.lang.String, java.lang.String)
public void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXException
prefix
- The prefix that was being mapping.
org.xml.sax.SAXException
- The client may throw
an exception during processing.ContentHandler.endPrefixMapping(java.lang.String)
public void ignorableWhitespace(char[] ch, int start, int length) throws org.xml.sax.SAXException
ch
- The characters from the XML document.start
- The start position in the array.length
- The number of characters to read from the array.
org.xml.sax.SAXException
- Any SAX exception, possibly
wrapping another exception.
org.xml.sax.SAXException
characters(char[], int, int)
public void skippedEntity(java.lang.String name) throws org.xml.sax.SAXException
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 exception.ContentHandler.skippedEntity(java.lang.String)
public void startCDATA() throws org.xml.sax.SAXException
org.xml.sax.SAXException
- The application may raise an exception.endCDATA()
public void startEntity(java.lang.String name) throws org.xml.sax.SAXException
name
- The name of the entity. If it is a parameter
entity, the name will begin with '%'.
org.xml.sax.SAXException
- The application may raise an exception.SerializerBase.endEntity(java.lang.String)
,
DeclHandler.internalEntityDecl(java.lang.String, java.lang.String)
,
DeclHandler.externalEntityDecl(java.lang.String, java.lang.String, java.lang.String)
protected void closeStartTag() throws org.xml.sax.SAXException
org.xml.sax.SAXException
public void startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
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.
org.xml.sax.SAXException
- The application may raise an
exception.endDTD()
,
startEntity(java.lang.String)
public int getIndentAmount()
getIndentAmount
in interface XSLOutputAttributes
getIndentAmount
in class SerializerBase
public void setIndentAmount(int m_indentAmount)
setIndentAmount
in interface SerializationHandler
setIndentAmount
in class SerializerBase
m_indentAmount
- The m_indentAmount to setprotected boolean shouldIndent()
private void setCdataSectionElements(java.lang.String key, java.util.Properties props)
null
if the property is not found.
key
- the property key.props
- the list of properties to search in.
Sets the vector of local-name/URI pairs of the cdata section elements
specified in the cdata-section-elements property.
This method is essentially a copy of getQNameProperties() from
OutputProperties. Eventually this method should go away and a call
to setCdataSectionElements(Vector v) should be made directly.private void addCdataSectionElement(java.lang.String URI_and_localName, java.util.Vector v)
URI_and_localName
- String of the form "{uri}local" or "local"public void setCdataSectionElements(java.util.Vector URI_and_localNames)
URI_and_localNames
- a vector of pairs of Strings (URI/local)protected java.lang.String ensureAttributesNamespaceIsDeclared(java.lang.String ns, java.lang.String localName, java.lang.String rawName) throws org.xml.sax.SAXException
ns
- the namespace URIrawName
- the qualified name
org.xml.sax.SAXException
void ensurePrefixIsDeclared(java.lang.String ns, java.lang.String rawName) throws org.xml.sax.SAXException
org.xml.sax.SAXException
public void flushPending() throws org.xml.sax.SAXException
org.xml.sax.SAXException
public void setContentHandler(org.xml.sax.ContentHandler ch)
SerializationHandler
Serializer.asContentHandler()
,
ToSAXHandler
public boolean addAttributeAlways(java.lang.String uri, java.lang.String localName, java.lang.String rawName, java.lang.String type, java.lang.String value, boolean xslAttribute)
addAttributeAlways
in class SerializerBase
uri
- the URI of the attributelocalName
- the local name of the attributerawName
- the qualified name of the attributetype
- the type of the attribute (probably CDATA)value
- the value of the attributexslAttribute
- true if this attribute is coming from an xsl:attribute element.
protected void firePseudoAttributes()
public void setTransformer(javax.xml.transform.Transformer transformer)
SerializerBase
setTransformer
in interface SerializationHandler
setTransformer
in class SerializerBase
transformer
- the transformer associated with this serializer.SerializationHandler.setTransformer(Transformer)
public boolean reset()
reset
in interface Serializer
reset
in class SerializerBase
private void resetToStream()
public void setEncoding(java.lang.String encoding)
setEncoding
in interface XSLOutputAttributes
setEncoding
in class SerializerBase
encoding
- the character encodingpublic void notationDecl(java.lang.String name, java.lang.String pubID, java.lang.String sysID) throws org.xml.sax.SAXException
notationDecl
in interface org.xml.sax.DTDHandler
notationDecl
in class SerializerBase
org.xml.sax.SAXException
DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)
public void unparsedEntityDecl(java.lang.String name, java.lang.String pubID, java.lang.String sysID, java.lang.String notationName) throws org.xml.sax.SAXException
unparsedEntityDecl
in interface org.xml.sax.DTDHandler
unparsedEntityDecl
in class SerializerBase
org.xml.sax.SAXException
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
private void DTDprolog() throws org.xml.sax.SAXException, java.io.IOException
org.xml.sax.SAXException
java.io.IOException
public void setDTDEntityExpansion(boolean expand)
setDTDEntityExpansion
in interface SerializationHandler
setDTDEntityExpansion
in class SerializerBase
expand
- true if DTD entities are to be expanded,
false if they are to be left as DTD entity references.public void setNewLine(char[] eolChars)
eolChars
- A character array corresponding to the characters to be used.public void addCdataSectionElements(java.lang.String URI_and_localNames)
URI_and_localNames
- a whitespace separated list of element names, each element
is a URI in curly braces (optional) and a local name. An example of such a parameter is:
"{http://company.com}price {myURI2}book chapter"
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |