Java org.dom4j.io SAXWriter fields, constructors, methods, implement or subclass

Example usage for Java org.dom4j.io SAXWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.dom4j.io SAXWriter.

The text is from its open source code.

Subclass

org.dom4j.io.SAXWriter has subclasses.
Click this link to see all its subclasses.

Constructor

Method

voidparse(String systemId)
This method is not supported.
voidparse(InputSource input)
Parses an XML document.
voidsetContentHandler(ContentHandler contentHandler)
Sets the ContentHandler called when SAX events are raised
voidsetErrorHandler(ErrorHandler errorHandler)
Sets the ErrorHandler.
voidsetLexicalHandler(LexicalHandler lexicalHandler)
Sets the LexicalHandler.
voidwrite(Node node)
A polymorphic method to write any Node to this SAX stream
voidwrite(Document document)
Generates SAX events for the given Document and all its content
voidwrite(Element element)
Generates SAX events for the given Element and all its content
voidwrite(String text)
Generates SAX events for the given text
voidwrite(CDATA cdata)
Generates SAX events for the given CDATA
voidwrite(Comment comment)
Generates SAX events for the given Comment
voidwrite(Entity entity)
Generates SAX events for the given Entity
voidwrite(ProcessingInstruction pi)
Generates SAX events for the given ProcessingInstruction
voidwriteClose(Element element)

Writes the closing tag of an Element

voidwriteOpen(Element element)

Writes the opening tag of an Element , including its Attribute s but without its content.