Example usage for org.jdom2.output.support AbstractXMLOutputProcessor subclass-usage

List of usage examples for org.jdom2.output.support AbstractXMLOutputProcessor subclass-usage

Introduction

In this page you can find the example usage for org.jdom2.output.support AbstractXMLOutputProcessor subclass-usage.

Usage

From source file com.googlesource.gerrit.plugins.manifest.CustomOutputter.java

public class CustomOutputter extends AbstractXMLOutputProcessor {
    private ArrayList<DTDAttribute> dtdAttributes;

    public CustomOutputter(ArrayList<DTDAttribute> dtdAttributes) {
        this.dtdAttributes = dtdAttributes;
    }

From source file io.wcm.maven.plugins.contentpackage.unpacker.OneAttributePerLineXmlProcessor.java

/**
 * XML output processor that renders one attribute per line for easier diff-ing on content changes.
 */
class OneAttributePerLineXmlProcessor extends AbstractXMLOutputProcessor {

    @Override

From source file jodtemplate.io.StandaloneOutputProcessor.java

public class StandaloneOutputProcessor extends AbstractXMLOutputProcessor {

    @Override
    protected void printDeclaration(final Writer out, final FormatStack fstack) throws IOException {
        if (fstack.isOmitDeclaration()) {
            return;

From source file org.apache.wiki.render.CustomXMLOutputProcessor.java

/**
 *  Override added to ensure attribute values including ampersands and quotes still get escaped even if
 *  disable-output-escaping processing instruction (meant to keep rest of HTML string as-is) set.
 *
 *  @since  2.10
 */