package LinkChecker; import javax.swing.text.html.*; /** * A VERY simple class meant only to subclass the * HTMLEditorKit class to make the getParser method * public so that we can gain access to an * HTMLEditorKit.Parser object. * * * @author Jeff Heaton * @version 1.0 */ public class HTMLParse extends HTMLEditorKit { /** * serialVersionUID */ private static final long serialVersionUID = -1477694295980947109L; /** * Call to obtain a HTMLEditorKit.Parser object. * * @return A new HTMLEditorKit.Parser object. */ public HTMLEditorKit.Parser getParser() { return super.getParser(); } }