Example usage for org.jdom2.input SAXBuilder subclass-usage

List of usage examples for org.jdom2.input SAXBuilder subclass-usage

Introduction

In this page you can find the example usage for org.jdom2.input SAXBuilder subclass-usage.

Usage

From source file com.thoughtworks.go.util.ValidatingSaxBuilder.java

class ValidatingSaxBuilder extends SAXBuilder {
    public ValidatingSaxBuilder() {
        this.setFeature("http://apache.org/xml/features/validation/schema", true);
        this.setValidation(true);
        this.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);
    }

From source file de.knowwe.visualization.util.SAXBuilderSingleton.java

/**
 * 
 * @author Johanna Latt
 * @created 23.12.2013
 */
public class SAXBuilderSingleton extends SAXBuilder {