Package net.sf.saxon.serialize
Class HTMLEmitter
java.lang.Object
net.sf.saxon.event.SequenceReceiver
net.sf.saxon.serialize.Emitter
net.sf.saxon.serialize.XMLEmitter
net.sf.saxon.serialize.HTMLEmitter
- All Implemented Interfaces:
Result
,Receiver
,ReceiverWithOutputProperties
- Direct Known Subclasses:
HTML40Emitter
,HTML50Emitter
This class generates HTML output
-
Field Summary
FieldsFields inherited from class net.sf.saxon.serialize.XMLEmitter
attSpecials, canonical, characterReferenceGenerator, declarationIsWritten, delimiter, DOCTYPE, elementCode, elementStack, indentForNextAttribute, internalSubset, openStartTag, RIGHT_ANGLE_NEWLINE, specialInAtt, specialInAttSingle, specialInText, started, startedElement, undeclareNamespaces, unfailing
Fields inherited from class net.sf.saxon.serialize.Emitter
allCharactersEncodable, characterSet, outputProperties, writer
Fields inherited from class net.sf.saxon.event.SequenceReceiver
pipelineConfiguration, previousAtomic, systemId
Fields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
characters
(UnicodeString chars, Location locationId, int properties) Character data.void
Output an element end tag.protected static boolean
isEmptyTag
(String tag) protected abstract boolean
isHTMLElement
(NodeName name) Decide whether an element is "serialized as an HTML element" in the language of the 3.0 specificationvoid
open()
Output start of documentprotected void
Do the real work of starting the document.void
processingInstruction
(String target, UnicodeString data, Location locationId, int properties) Handle a processing instruction.protected abstract boolean
Ask whether control characters should be rejected: true for HTML4, false for HTML5protected static void
setEmptyTag
(String tag) void
setEscapeNonAscii
(Boolean escape) Say that all non-ASCII characters should be escaped, regardless of the character encodingvoid
void
startElement
(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) Output element start tagprotected void
writeAttribute
(NodeName elCode, String attname, String value, int properties) Write attribute name=value pair.protected void
writeDocType
(NodeName name, String displayName, String systemId, String publicId) Output the document type declarationprotected void
writeEmptyElementTagCloser
(String displayName, NodeName nameCode) Close an empty element tag.protected void
writeEscape
(UnicodeString chars, boolean inAttribute) Escape characters.Methods inherited from class net.sf.saxon.serialize.XMLEmitter
close, closeStartTag, comment, convertToAscii, endDocument, isStarted, namespace, setCharacterReferenceGenerator, setIndentForNextAttribute, startDocument, testCharacters, usesTypeAnnotations, writeAttributeIndentString, writeCodePoint, writeDeclaration, writeDocTypeWithNullSystemId
Methods inherited from class net.sf.saxon.serialize.Emitter
append, getOutputProperties, setMustClose, setOutputProperties, setUnicodeWriter, setUnparsedEntity
Methods inherited from class net.sf.saxon.event.SequenceReceiver
append, decompose, flatten, getConfiguration, getErrorCodeForDecomposingFunctionItems, getNamePool, getPipelineConfiguration, getSystemId, handlesAppend, setPipelineConfiguration, setSystemId
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.sf.saxon.event.Receiver
append, getPipelineConfiguration, handlesAppend, setPipelineConfiguration
Methods inherited from interface javax.xml.transform.Result
getSystemId, setSystemId
-
Field Details
-
version
protected int version
-
-
Constructor Details
-
HTMLEmitter
public HTMLEmitter()Constructor
-
-
Method Details
-
setEmptyTag
-
isEmptyTag
-
setEscapeNonAscii
Say that all non-ASCII characters should be escaped, regardless of the character encoding- Overrides:
setEscapeNonAscii
in classXMLEmitter
- Parameters:
escape
- true if all non ASCII characters should be escaped
-
isHTMLElement
Decide whether an element is "serialized as an HTML element" in the language of the 3.0 specification- Parameters:
name
- the name of the element- Returns:
- true if the element is to be serialized as an HTML element
-
open
Output start of document- Specified by:
open
in interfaceReceiver
- Overrides:
open
in classXMLEmitter
- Throws:
XPathException
- if an error occurs
-
openDocument
Description copied from class:XMLEmitter
Do the real work of starting the document. This happens when the first content is written.- Overrides:
openDocument
in classXMLEmitter
- Throws:
XPathException
- if an error occurs opening the output file
-
writeDocType
protected void writeDocType(NodeName name, String displayName, String systemId, String publicId) throws XPathException Output the document type declaration- Overrides:
writeDocType
in classXMLEmitter
- Parameters:
name
- the qualified name of the elementdisplayName
- The element namesystemId
- The DOCTYPE system identifierpublicId
- The DOCTYPE public identifier- Throws:
XPathException
- if an error occurs writing to the output
-
startElement
public void startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) throws XPathException Output element start tag- Specified by:
startElement
in interfaceReceiver
- Overrides:
startElement
in classXMLEmitter
- Parameters:
elemName
- the name of the elementtype
- the type annotation of the elementattributes
- the attributes of this elementnamespaces
- the in-scope namespaces of this element: generally this is all the in-scope namespaces, without relying on inheriting namespaces from parent elementslocation
- an object providing information about the module, line, and column where the node originatedproperties
- bit-significant properties of the element node. If there are no relevant properties, zero is supplied. The definitions of the bits are in classReceiverOption
- Throws:
XPathException
- if an error occurs
-
startContentOLD
- Throws:
XPathException
-
writeAttribute
protected void writeAttribute(NodeName elCode, String attname, String value, int properties) throws XPathException Write attribute name=value pair. Overrides the XML behaviour if the name and value are the same (we assume this is a boolean attribute to be minimised), or if the value is a URL.- Overrides:
writeAttribute
in classXMLEmitter
- Parameters:
elCode
- The element name is not used in this version of the method, but is used in the HTML subclass.attname
- The attribute name, which has already been validated to ensure it can be written in this encodingvalue
- The value of the attributeproperties
- Any special properties of the attribute- Throws:
XPathException
- if an error occurs
-
writeEscape
protected void writeEscape(UnicodeString chars, boolean inAttribute) throws IOException, XPathException Escape characters. Overrides the XML behaviour- Overrides:
writeEscape
in classXMLEmitter
- Parameters:
chars
- The character sequence containing the stringinAttribute
- Set to true if the text is in an attribute value- Throws:
IOException
- if an IO exception occursXPathException
- if an IO exception occurs
-
rejectControlCharacters
protected abstract boolean rejectControlCharacters()Ask whether control characters should be rejected: true for HTML4, false for HTML5- Returns:
- true if control characters should be rejected
-
writeEmptyElementTagCloser
Close an empty element tag. (This is overridden in XHTMLEmitter).- Overrides:
writeEmptyElementTagCloser
in classXMLEmitter
- Parameters:
displayName
- the name of the empty elementnameCode
- the fingerprint of the name of the empty element- Throws:
IOException
- if an IO exception occurs
-
endElement
Output an element end tag.- Specified by:
endElement
in interfaceReceiver
- Overrides:
endElement
in classXMLEmitter
- Throws:
XPathException
- if an error occurs
-
characters
public void characters(UnicodeString chars, Location locationId, int properties) throws XPathException Character data.- Specified by:
characters
in interfaceReceiver
- Overrides:
characters
in classXMLEmitter
- Parameters:
chars
- The characterslocationId
- provides information such as line number and system ID.properties
- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this text node
- USE_CDATA
- Output as a CDATA section
- Throws:
XPathException
- if an error occurs
-
processingInstruction
public void processingInstruction(String target, UnicodeString data, Location locationId, int properties) throws XPathException Handle a processing instruction.- Specified by:
processingInstruction
in interfaceReceiver
- Overrides:
processingInstruction
in classXMLEmitter
- Parameters:
target
- The PI name. This must be a legal name (it will not be checked).data
- The data portion of the processing instructionlocationId
- provides information such as line number and system ID.properties
- Additional information about the PI.- Throws:
XPathException
- if an error occurs
-