Package net.sf.saxon.serialize
Class HTML50Emitter
- java.lang.Object
-
- net.sf.saxon.event.SequenceReceiver
-
- net.sf.saxon.serialize.Emitter
-
- net.sf.saxon.serialize.XMLEmitter
-
- net.sf.saxon.serialize.HTMLEmitter
-
- net.sf.saxon.serialize.HTML50Emitter
-
- All Implemented Interfaces:
javax.xml.transform.Result
,Receiver
,ReceiverWithOutputProperties
public class HTML50Emitter extends HTMLEmitter
This class generates HTML 5.0 output
-
-
Field Summary
-
Fields inherited from class net.sf.saxon.serialize.HTMLEmitter
version
-
Fields inherited from class net.sf.saxon.serialize.XMLEmitter
attSpecials, canonical, characterReferenceGenerator, declarationIsWritten, delimiter, 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
-
-
Constructor Summary
Constructors Constructor Description HTML50Emitter()
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
isHTMLElement(NodeName name)
Decide whether an element is "serialized as an HTML element" in the language of the 3.0 specificationprotected void
openDocument()
Do the real work of starting the document.protected boolean
rejectControlCharacters()
Ask whether control characters should be rejected: true for HTML4, false for HTML5void
startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties)
Output element start tagprotected void
writeDocType(NodeName name, java.lang.String displayName, java.lang.String systemId, java.lang.String publicId)
Output the document type declarationprotected boolean
writeDocTypeWithNullSystemId()
-
Methods inherited from class net.sf.saxon.serialize.HTMLEmitter
characters, endElement, isEmptyTag, open, processingInstruction, setEmptyTag, setEscapeNonAscii, startContentOLD, writeAttribute, writeEmptyElementTagCloser, writeEscape
-
Methods inherited from class net.sf.saxon.serialize.XMLEmitter
close, closeStartTag, comment, convertToAscii, endDocument, isStarted, namespace, setCharacterReferenceGenerator, setIndentForNextAttribute, startDocument, testCharacters, usesTypeAnnotations, writeAttributeIndentString, writeCodePoint, writeDeclaration
-
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
-
-
-
-
Method Detail
-
isHTMLElement
protected boolean isHTMLElement(NodeName name)
Decide whether an element is "serialized as an HTML element" in the language of the 3.0 specification- Specified by:
isHTMLElement
in classHTMLEmitter
- Parameters:
name
- the name of the element- Returns:
- true if the element is to be serialized as an HTML element
-
openDocument
protected void openDocument() throws XPathException
Description copied from class:XMLEmitter
Do the real work of starting the document. This happens when the first content is written.- Overrides:
openDocument
in classHTMLEmitter
- Throws:
XPathException
- if an error occurs opening the output file
-
writeDocType
protected void writeDocType(NodeName name, java.lang.String displayName, java.lang.String systemId, java.lang.String publicId) throws XPathException
Output the document type declaration- Overrides:
writeDocType
in classHTMLEmitter
- Parameters:
displayName
- The element namesystemId
- The DOCTYPE system identifierpublicId
- The DOCTYPE public identifiername
- the qualified name of the element- Throws:
XPathException
- if an error occurs writing to the output
-
writeDocTypeWithNullSystemId
protected boolean writeDocTypeWithNullSystemId()
- Overrides:
writeDocTypeWithNullSystemId
in classXMLEmitter
-
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 classHTMLEmitter
- 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
-
rejectControlCharacters
protected boolean rejectControlCharacters()
Ask whether control characters should be rejected: true for HTML4, false for HTML5- Specified by:
rejectControlCharacters
in classHTMLEmitter
- Returns:
- true if control characters should be rejected
-
-