--- /dev/null
+/*
+ * © 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) {
+ }
+
+}