Example usage for com.lowagie.text.xml.simpleparser SimpleXMLParser parse

List of usage examples for com.lowagie.text.xml.simpleparser SimpleXMLParser parse

Introduction

In this page you can find the example usage for com.lowagie.text.xml.simpleparser SimpleXMLParser parse.

Prototype

public static void parse(SimpleXMLDocHandler doc, SimpleXMLDocHandlerComment comment, Reader r, boolean html)
        throws IOException 

Source Link

Document

Parses the XML document firing the events to the handler.

Usage

From source file:nl.knaw.dans.common.lang.pdf.ExtendedHtmlWorker.java

License:Apache License

public void parse(Reader reader) throws IOException {
    SimpleXMLParser.parse(this, null, reader, true);
}