public class TEXTEmitter extends XMLEmitter
declarationIsWritten, elementCode, elementStack, empty, openStartTag, preferHex, undeclareNamespaces
allCharactersEncodable, characterSet, namePool, outputProperties, outputStream, pipelineConfig, streamResult, systemId, writer
?????? |
---|
TEXTEmitter() |
?????? | ????? |
---|---|
void |
attribute(int nameCode,
int typeCode,
java.lang.CharSequence value,
int locationId,
int properties)
Notify an attribute.
|
void |
characters(java.lang.CharSequence chars,
int locationId,
int properties)
Produce output using the current Writer.
|
void |
comment(java.lang.CharSequence chars,
int locationId,
int properties)
Output a comment.
|
void |
endElement()
Output an element end tag.
|
void |
namespace(int namespaceCode,
int properties)
Notify a namespace.
|
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,
int locationId,
int properties)
Output a processing instruction.
|
void |
startElement(int nameCode,
int typeCode,
int locationId,
int properties)
Output an element start tag.
|
void |
writeDeclaration()
Output the XML declaration.
|
close, closeStartTag, emptyElementTagCloser, endDocument, getCachedName, outputCharacterReference, putCachedName, startContent, startDocument, testCharacters, writeAttribute, writeCharSequence, writeDocType, writeEscape
public void open() throws XPathException
open
???? Receiver
open
??? XMLEmitter
XPathException
protected void openDocument() throws XPathException
XMLEmitter
openDocument
??? XMLEmitter
XPathException
public void writeDeclaration() throws XPathException
writeDeclaration
??? XMLEmitter
XPathException
public void characters(java.lang.CharSequence chars, int locationId, int properties) throws XPathException
characters
???? Receiver
characters
??? XMLEmitter
chars
- 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(int nameCode, int typeCode, int locationId, int properties)
startElement
???? Receiver
startElement
??? XMLEmitter
nameCode
- 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(int namespaceCode, int properties)
Receiver
namespace
???? Receiver
namespace
??? XMLEmitter
namespaceCode
- an integer: the top half is a prefix code, the bottom half a URI code.
These may be translated into an actual prefix and URI using the name pool. A prefix code of
zero represents the empty prefix (that is, the default namespace). A URI code of zero represents
a URI of "", that is, a namespace undeclaration.properties
- 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:
it sets the REJECT_DUPLICATES flag, and this is treated as a hard error.public void attribute(int nameCode, int typeCode, java.lang.CharSequence value, int locationId, int properties)
Receiver
attribute
???? Receiver
attribute
??? XMLEmitter
nameCode
- The name of the attribute, as held in the name pooltypeCode
- 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
???? Receiver
endElement
??? XMLEmitter
public void processingInstruction(java.lang.String name, java.lang.CharSequence value, int locationId, int properties) throws XPathException
processingInstruction
???? Receiver
processingInstruction
??? XMLEmitter
name
- 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. The following bits are
defined:
XPathException
public void comment(java.lang.CharSequence chars, int locationId, int properties) throws XPathException
comment
???? Receiver
comment
??? XMLEmitter
chars
- 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. The following bits are
defined:
XPathException