Example usage for org.dom4j.io XMLWriter subclass-usage

List of usage examples for org.dom4j.io XMLWriter subclass-usage

Introduction

In this page you can find the example usage for org.dom4j.io XMLWriter subclass-usage.

Usage

From source file com.alibaba.antx.util.SimpleXMLWriter.java

/**
 * ?XML writer????
 *
 * @author Michael Zhou
 */
public class SimpleXMLWriter extends XMLWriter {

From source file com.cladonia.xml.ExchangerXMLWriter.java

/**<p><code>XMLWriter</code> takes a DOM4J tree and formats it to a
  * stream as XML.
  * It can also take SAX events too so can be used by SAX clients as this object
  * implements the {@link ContentHandler} and {@link LexicalHandler} interfaces.
  * as well. This formatter performs typical document
  * formatting.  The XML declaration and processing instructions are

From source file com.cladonia.xml.XMLFormatter.java

/**<p><code>XMLWriter</code> takes a DOM4J tree and formats it to a
  * stream as XML.
  * It can also take SAX events too so can be used by SAX clients as this object
  * implements the {@link ContentHandler} and {@link LexicalHandler} interfaces.
  * as well. This formatter performs typical document
  * formatting.  The XML declaration and processing instructions are

From source file com.u2apple.rt.util.StandaloneWriter.java

/**
 *
 * @author Adam
 */
public class StandaloneWriter extends XMLWriter {

From source file com.u2apple.tool.util.StandaloneWriter.java

/**
 *
 * @author Adam
 */
public class StandaloneWriter extends XMLWriter {

From source file com.xpn.xwiki.internal.xml.DOMXMLWriter.java

/**
 * This a minimal implementation to transform an XMLWriter into a <code>{@link org.dom4j.dom.DOMDocument}</code>
 * builder.
 * <p>
 * This implementation allow the use of a same function accepting an XMLWriter, to either produce output into an
 * <code>{@link java.io.OutputStream}</code> or to create a <code>{@link org.dom4j.dom.DOMDocument}</code>. Here a

From source file com.xpn.xwiki.internal.xml.XMLWriter.java

/**
 * Extension to <code>{@link org.dom4j.io.XMLWriter}</code> to allow filling some element content with an input stream,
 * minimizing the memory footprint of the operation.
 * <p>
 * This extension is not intended to be used to format a DOM4J tree to a stream, but to immediately write out the tags
 * produced without building the document tree in memory. It is not compatible with the SAX part of the original

From source file org.apache.maven.plugin.idea.IdeaXmlWriter.java

/**
 * Custom implementation of <a href="http://dom4j.org/apidocs/org/dom4j/io/XMLWriter.html">XMLWriter</a> for use with
 * the IDEA plugin.
 */
public class IdeaXmlWriter extends XMLWriter {
    /**

From source file org.jfrog.jade.plugins.idea.IdeaXmlWriter.java

/**
 * Custom implementation of <a href="http://dom4j.org/apidocs/org/dom4j/io/XMLWriter.html">XMLWriter</a> for use with
 * the Idea plugin.
 */
public class IdeaXmlWriter extends XMLWriter {
    /**

From source file org.sysmodb.ControlCharStrippingXMLWriter.java

/**
 * Specialised writer that strips out on control characters illegal for XML v1.0 
 * These characters are simply removed completely
 * 
 * @author Stuart Owen
 *