From: David ‘Bombe’ Roden Date: Mon, 9 Mar 2009 17:01:35 +0000 (+0100) Subject: Add HTML parser stub. X-Git-Url: https://git.pterodactylus.net/?p=arachne.git;a=commitdiff_plain;h=15aad6fc9873fae9d81c613441505c05ae258c40 Add HTML parser stub. --- diff --git a/src/net/pterodactylus/arachne/parser/HtmlEditorKitParser.java b/src/net/pterodactylus/arachne/parser/HtmlEditorKitParser.java new file mode 100644 index 0000000..7e9085d --- /dev/null +++ b/src/net/pterodactylus/arachne/parser/HtmlEditorKitParser.java @@ -0,0 +1,26 @@ +/* + * © 2009 David ‘Bombe’ Roden + */ +package net.pterodactylus.arachne.parser; + +import java.io.InputStream; + +import javax.swing.text.html.HTMLEditorKit; + +/** + * {@link Parser} implementation based on Swing’s {@link HTMLEditorKit}. + * + * @author David ‘Bombe’ Roden + */ +public class HtmlEditorKitParser implements Parser { + + /** + * {@inheritdoc} + * + * @see net.pterodactylus.arachne.parser.Parser#parse(net.pterodactylus.arachne.parser.ParserListener, + * java.io.InputStream) + */ + public void parse(ParserListener parserListener, InputStream inputStream) { + } + +}