All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.tool.html.HTMLParserDelegator Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package com.clickntap.tool.html;

import javax.swing.text.html.HTMLEditorKit;
import javax.swing.text.html.parser.DTD;
import javax.swing.text.html.parser.ParserDelegator;
import java.io.IOException;
import java.io.Reader;

public class HTMLParserDelegator extends ParserDelegator {
    private static final String HTML32 = "html32";

    public void parse(Reader r, HTMLEditorKit.ParserCallback cb, boolean ignoreCharSet) throws IOException {
        new HTMLDocumentParser(DTD.getDTD(HTML32)).parse(r, cb, ignoreCharSet);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy