45ba77464be10d63ff39e1f28a273bd9bdde7bfc
[arachne.git] / src / net / pterodactylus / arachne / parser / HtmlEditorKitParser.java
1 /*
2  * © 2009 David ‘Bombe’ Roden
3  */
4 package net.pterodactylus.arachne.parser;
5
6 import java.io.InputStream;
7
8 import javax.swing.text.html.HTMLEditorKit;
9
10 /**
11  * {@link Parser} implementation based on Swing’s {@link HTMLEditorKit}.
12  *
13  * @author David ‘Bombe’ Roden <bombe@pterodactylus.net>
14  */
15 public class HtmlEditorKitParser implements Parser {
16
17         /**
18          * {@inheritdoc}
19          *
20          * @see net.pterodactylus.arachne.parser.Parser#parse(ParserListener,
21          *      InputStream, String)
22          */
23         public void parse(ParserListener parserListener, InputStream inputStream, String charset) throws IOException {
24         }
25
26 }