Example usage for org.jdom2.output.support FormatStack getEscapeStrategy

List of usage examples for org.jdom2.output.support FormatStack getEscapeStrategy

Introduction

In this page you can find the example usage for org.jdom2.output.support FormatStack getEscapeStrategy.

Prototype

public EscapeStrategy getEscapeStrategy() 

Source Link

Usage

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

License:Apache License

protected void attributeEscapedEntitiesFilter(final Writer out, final FormatStack fstack, final String value)
        throws IOException {

    write(out, Format.escapeAttribute(fstack.getEscapeStrategy(), value));

}