public class TEXTEmitter extends XMLEmitter
attSpecials, characterReferenceGenerator, declarationIsWritten, delimiter, elementCode, elementStack, indentForNextAttribute, openStartTag, started, startedElement, undeclareNamespaces, unfailing
allCharactersEncodable, characterSet, outputProperties, outputStream, streamResult, writer
pipelineConfiguration, previousAtomic, systemId
Constructor and Description |
---|
TEXTEmitter() |
Modifier and Type | Method and Description |
---|---|
void |
attribute(NodeName nameCode,
SimpleType typeCode,
java.lang.CharSequence value,
Location locationId,
int properties)
Notify an attribute.
|
void |
characters(java.lang.CharSequence chars,
Location locationId,
int properties)
Produce output using the current Writer.
|
void |
comment(java.lang.CharSequence chars,
Location locationId,
int properties)
Output a comment.
|
void |
endElement()
Output an element end tag.
|
void |
namespace(NamespaceBindingSet namespaceBindings,
int properties)
Notify one or more namespaces.
|
void |
open()
Start of the document.
|
protected void |
openDocument()
Do the real work of starting the document.
|
void |
processingInstruction(java.lang.String name,
java.lang.CharSequence value,
Location locationId,
int properties)
Output a processing instruction.
|
void |
startElement(NodeName elemName,
SchemaType typeCode,
Location location,
int properties)
Output an element start tag.
|
void |
writeDeclaration()
Output the XML declaration.
|
close, closeStartTag, convertToAscii, emptyElementTagCloser, endDocument, getAttributeIndentString, isStarted, setCharacterReferenceGenerator, setEscapeNonAscii, setIndentForNextAttribute, startContent, startDocument, testCharacters, usesTypeAnnotations, writeAttribute, writeCharSequence, writeDocType, writeDocTypeWithNullSystemId, writeEscape
append, getOutputProperties, getOutputStream, getWriter, makeOutputStream, makeWriter, setOutputProperties, setOutputStream, setStreamResult, setUnparsedEntity, setWriter, usesWriter
append, getConfiguration, getNamePool, getPipelineConfiguration, getSystemId, isTrueSequenceReceiver, setPipelineConfiguration, setSystemId
public void open() throws XPathException
open
in interface Receiver
open
in class XMLEmitter
XPathException
- if an error occursprotected void openDocument() throws XPathException
XMLEmitter
openDocument
in class XMLEmitter
XPathException
- f an error occurs opening the output filepublic void writeDeclaration() throws XPathException
writeDeclaration
in class XMLEmitter
XPathException
public void characters(java.lang.CharSequence chars, Location locationId, int properties) throws XPathException
characters
in interface Receiver
characters
in class XMLEmitter
chars
- Character sequence to be outputlocationId
- properties
- bit fields holding special properties of the characters @throws XPathException for any failureXPathException
- if an error occurspublic void startElement(NodeName elemName, SchemaType typeCode, Location location, int properties)
startElement
in interface Receiver
startElement
in class XMLEmitter
elemName
- The element name (tag)typeCode
- The type annotationlocation
- properties
- Bit fields holding any special properties of the elementpublic void namespace(NamespaceBindingSet namespaceBindings, int properties)
Receiver
namespace
in interface Receiver
namespace
in class XMLEmitter
namespaceBindings
- 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, java.lang.CharSequence value, Location locationId, int properties)
Receiver
attribute
in interface Receiver
attribute
in class XMLEmitter
nameCode
- The name of the attributetypeCode
- The type annotation of the attributevalue
- the string value of the attributelocationId
- provides information such as line number and system ID.properties
- Bit significant value. The following bits are defined:
public void endElement()
endElement
in interface Receiver
endElement
in class XMLEmitter
public void processingInstruction(java.lang.String name, java.lang.CharSequence value, Location locationId, int properties) throws XPathException
processingInstruction
in interface Receiver
processingInstruction
in class XMLEmitter
name
- The PI name. This must be a legal name (it will not be checked).value
- The data portion of the processing instructionlocationId
- provides information such as line number and system ID.properties
- Additional information about the PI.XPathException
- if an error occurspublic void comment(java.lang.CharSequence chars, Location locationId, int properties) throws XPathException
comment
in interface Receiver
comment
in class XMLEmitter
chars
- The content of the commentlocationId
- provides information such as line number and system ID.properties
- Additional information about the comment.XPathException
- if an error occursCopyright (c) 2004-2018 Saxonica Limited. All rights reserved.