Add HTML parser stub.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 9 Mar 2009 17:01:35 +0000 (18:01 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 9 Mar 2009 17:01:35 +0000 (18:01 +0100)
src/net/pterodactylus/arachne/parser/HtmlEditorKitParser.java [new file with mode: 0644]

diff --git a/src/net/pterodactylus/arachne/parser/HtmlEditorKitParser.java b/src/net/pterodactylus/arachne/parser/HtmlEditorKitParser.java
new file mode 100644 (file)
index 0000000..7e9085d
--- /dev/null
@@ -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 <bombe@pterodactylus.net>
+ */
+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) {
+       }
+
+}