public final class StringOutputter extends Outputter
| Constructor and Description |
|---|
StringOutputter(StringBuffer buffer) |
| Modifier and Type | Method and Description |
|---|---|
int |
checkAttributePrefix(int nameCode)
Check that the prefix for an attribute is acceptable, returning a substitute
prefix if not.
|
void |
close()
Close the output
|
void |
copyNamespaceNode(int nscode)
Copy a namespace node to the current element node
(Rules defined in XSLT 1.0 errata)
|
Properties |
getOutputProperties() |
void |
reset()
Synchronize the state of the Outputter with that of the underlying Emitter
|
void |
setErrorListener(ErrorListener listener) |
boolean |
thereIsAnOpenStartTag()
Test whether there is an open start tag.
|
void |
write(String s)
Produce literal output.
|
void |
writeAttribute(int nameCode,
String value,
boolean noEscape)
Output an attribute value.
|
void |
writeComment(String comment)
Write a comment.
|
void |
writeContent(char[] chars,
int start,
int length)
Produce text content output.
|
void |
writeContent(String s)
Produce text content output.
|
void |
writeEndTag(int nameCode)
Output an element end tag.
|
void |
writeNamespaceDeclaration(int nscode)
Output a namespace declaration.
|
void |
writePI(String target,
String data)
Write a processing instruction
No-op in this implementation
|
void |
writeStartTag(int nameCode)
Output an element start tag.
|
getEmitter, open, setEscaping, writeAttributepublic StringOutputter(StringBuffer buffer)
public void setErrorListener(ErrorListener listener)
public void reset()
throws TransformerException
Outputterreset in class OutputterTransformerExceptionpublic Properties getOutputProperties()
getOutputProperties in class Outputterpublic void write(String s) throws TransformerException
write in class OutputterTransformerExceptionpublic void writeContent(String s) throws TransformerException
writeContent in class Outputters - The String to be outputTransformerException - for any failurepublic void writeContent(char[] chars,
int start,
int length)
throws TransformerException
writeContent in class Outputterchars - Character array to be outputstart - start position of characters to be outputlength - number of characters to be outputTransformerException - for any failurepublic void writeStartTag(int nameCode)
throws TransformerException
writeStartTag in class OutputternameCode - The element name codeTransformerExceptionpublic int checkAttributePrefix(int nameCode)
throws TransformerException
checkAttributePrefix in class OutputterTransformerExceptionpublic void writeNamespaceDeclaration(int nscode)
throws TransformerException
writeNamespaceDeclaration in class Outputternscode - The namespace codeTransformerException - if there is no start tag to write to (created using writeStartTag),
or if character content has been written since the start tag was written.public void copyNamespaceNode(int nscode)
throws TransformerException
copyNamespaceNode in class OutputterTransformerExceptionpublic boolean thereIsAnOpenStartTag()
thereIsAnOpenStartTag in class Outputterpublic void writeAttribute(int nameCode,
String value,
boolean noEscape)
throws TransformerException
writeAttribute in class Outputtername - The name of the attributevalue - The value of the attributenoEscape - True if it's known there are no special characters in the value. If
unsure, set this to false.TransformerException - if there is no start tag to write to (created using writeStartTag),
or if character content has been written since the start tag was written.public void writeEndTag(int nameCode)
throws TransformerException
writeEndTag in class OutputternameCode - The element name codeTransformerExceptionpublic void writeComment(String comment) throws TransformerException
writeComment in class OutputterTransformerExceptionpublic void writePI(String target, String data) throws TransformerException
writePI in class OutputterTransformerExceptionpublic void close()
throws TransformerException
close in class OutputterTransformerException