Example usage for org.dom4j.io XPPReader XPPReader

List of usage examples for org.dom4j.io XPPReader XPPReader

Introduction

In this page you can find the example usage for org.dom4j.io XPPReader XPPReader.

Prototype

public XPPReader() 

Source Link

Usage

From source file:org.compass.core.xml.dom4j.converter.XPPReaderXmlContentConverter.java

License:Apache License

protected XPPReader doCreateXPPReader(CompassSettings settings) {
    return new XPPReader();
}

From source file:org.dom4j.samples.PullParserDemo.java

License:Open Source License

protected Document parse(String xmlFile) throws Exception {
    XPPReader reader = new XPPReader();
    return reader.read(xmlFile);
}