Package com.icl.saxon.output
Class DTDEmitter
- java.lang.Object
-
- com.icl.saxon.output.Emitter
-
- com.icl.saxon.output.ProxyEmitter
-
- com.icl.saxon.output.DTDEmitter
-
- All Implemented Interfaces:
javax.xml.transform.Result
public class DTDEmitter extends ProxyEmitter
DTDEmitter is an Emitter that generates output in DTD format from special elements such as dtd:doctype and dtd:element.
-
-
Field Summary
-
Fields inherited from class com.icl.saxon.output.ProxyEmitter
baseEmitter, outputProperties
-
-
Constructor Summary
Constructors Constructor Description DTDEmitter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] chars, int start, int len)
Write character data (normally the value of an entity)void
endElement(int nameCode)
End of an element.void
startElement(int nameCode, org.xml.sax.Attributes attributes, int[] namespaces, int nscount)
Start of an element.-
Methods inherited from class com.icl.saxon.output.ProxyEmitter
comment, endDocument, processingInstruction, setDocumentLocator, setEscaping, setNamePool, setOutputProperties, setUnderlyingEmitter, setUnparsedEntity, setWriter, startDocument
-
Methods inherited from class com.icl.saxon.output.Emitter
getNamePool, getOutputProperties, getOutputStream, getSystemId, getWriter, makeEmitter, setOutputStream, setSystemId, usesWriter
-
-
-
-
Method Detail
-
startElement
public void startElement(int nameCode, org.xml.sax.Attributes attributes, int[] namespaces, int nscount) throws javax.xml.transform.TransformerException
Start of an element.- Overrides:
startElement
in classProxyEmitter
namespaces
- Array of namespace codes identifying the namespace prefix/uri pairs associated with this elementnscount
- Number of significant entries within namespaces array- Throws:
javax.xml.transform.TransformerException
-
endElement
public void endElement(int nameCode) throws javax.xml.transform.TransformerException
End of an element.- Overrides:
endElement
in classProxyEmitter
- Throws:
javax.xml.transform.TransformerException
-
characters
public void characters(char[] chars, int start, int len) throws javax.xml.transform.TransformerException
Write character data (normally the value of an entity)- Overrides:
characters
in classProxyEmitter
- Throws:
javax.xml.transform.TransformerException
-
-