public class TEXTEmitter extends XMLEmitter
characterReferenceGenerator, declarationIsWritten, elementCode, elementStack, indentForNextAttribute, openStartTag, started, startedElement, undeclareNamespacesallCharactersEncodable, characterSet, namePool, outputProperties, outputStream, pipelineConfig, streamResult, systemId, writerPI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING| Constructor and Description |
|---|
TEXTEmitter() |
| Modifier and Type | Method and Description |
|---|---|
void |
attribute(NodeName nameCode,
SimpleType typeCode,
CharSequence value,
int locationId,
int properties)
Notify an attribute.
|
void |
characters(CharSequence chars,
int locationId,
int properties)
Produce output using the current Writer.
|
void |
comment(CharSequence chars,
int locationId,
int properties)
Output a comment.
|
void |
endElement()
Output an element end tag.
|
void |
namespace(NamespaceBinding namespaceBinding,
int properties)
Notify a namespace.
|
void |
open()
Start of the document.
|
protected void |
openDocument()
Do the real work of starting the document.
|
void |
processingInstruction(String name,
CharSequence value,
int locationId,
int properties)
Output a processing instruction.
|
void |
startElement(NodeName elemName,
SchemaType typeCode,
int locationId,
int properties)
Output an element start tag.
|
void |
writeDeclaration()
Output the XML declaration.
|
close, closeStartTag, emptyElementTagCloser, endDocument, getAttributeIndentString, setCharacterReferenceGenerator, setEscapeNonAscii, setIndentForNextAttribute, startContent, startDocument, testCharacters, usesTypeAnnotations, writeAttribute, writeCharSequence, writeDocType, writeDocTypeWithNullSystemId, writeEscapegetConfiguration, getOutputProperties, getOutputStream, getPipelineConfiguration, getSystemId, getWriter, makeOutputStream, makeWriter, setOutputProperties, setOutputStream, setPipelineConfiguration, setStreamResult, setSystemId, setUnparsedEntity, setWriter, usesWriterpublic void open()
throws XPathException
open in interface Receiveropen in class XMLEmitterXPathException - if an error occursprotected void openDocument()
throws XPathException
XMLEmitteropenDocument in class XMLEmitterXPathException - f an error occurs opening the output filepublic void writeDeclaration()
throws XPathException
writeDeclaration in class XMLEmitterXPathExceptionpublic void characters(CharSequence chars, int locationId, int properties) throws XPathException
characters in interface Receivercharacters in class XMLEmitterchars - Character sequence to be outputproperties - bit fields holding special properties of the characterslocationId - an integer which can be interpreted using a LocationProvider
to return information such as line number and system ID. If no location information is available,
the value zero is supplied.XPathException - for any failurepublic void startElement(NodeName elemName, SchemaType typeCode, int locationId, int properties)
startElement in interface ReceiverstartElement in class XMLEmitterelemName - The element name (tag)typeCode - The type annotationproperties - Bit fields holding any special properties of the elementlocationId - an integer which can be interpreted using a LocationProvider to return
information such as line number and system ID. If no location information is available,
the value zero is supplied.public void namespace(NamespaceBinding namespaceBinding, int properties)
Receivernamespace in interface Receivernamespace in class XMLEmitternamespaceBinding - contains the namespace prefix and namespace URIproperties - The most important property is REJECT_DUPLICATES. If this property is set, the
namespace declaration will be rejected if it conflicts with a previous declaration of the same
prefix. If the property is not set, the namespace declaration will be ignored if it conflicts
with a previous declaration. This reflects the fact that when copying a tree, namespaces for child
elements are emitted before the namespaces of their parent element. Unfortunately this conflicts
with the XSLT rule for complex content construction, where the recovery action in the event of
conflicts is to take the namespace that comes last. XSLT therefore doesn't recover from this error:public void attribute(NodeName nameCode, SimpleType typeCode, CharSequence value, int locationId, int properties)
Receiverattribute in interface Receiverattribute in class XMLEmitternameCode - The name of the attributetypeCode - The type of the attribute, as held in the name pool. The additional bit
NodeInfo.IS_DTD_TYPE may be set to indicate a DTD-derived type.value - the string value of the attributelocationId - an integer which can be interpreted using a LocationProvider to return
information such as line number and system ID. If no location information is available,
the value zero is supplied.properties - Bit significant value. The following bits are defined:
public void endElement()
endElement in interface ReceiverendElement in class XMLEmitterpublic void processingInstruction(String name, CharSequence value, int locationId, int properties) throws XPathException
processingInstruction in interface ReceiverprocessingInstruction in class XMLEmittername - The PI name. This must be a legal name (it will not be checked).value - The data portion of the processing instructionlocationId - an integer which can be interpreted using a LocationProvider to return
information such as line number and system ID. If no location information is available,
the value zero is supplied.properties - Additional information about the PI.XPathException - if an error occurspublic void comment(CharSequence chars, int locationId, int properties) throws XPathException
comment in interface Receivercomment in class XMLEmitterchars - The content of the commentlocationId - an integer which can be interpreted using a LocationProvider to return
information such as line number and system ID. If no location information is available,
the value zero is supplied.properties - Additional information about the comment.XPathException - if an error occursCopyright (c) 2004-2013 Saxonica Limited. All rights reserved.