KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > web > html > HTMLParser


1 package org.jahia.clipbuilder.html.web.html;
2
3 import java.io.*;
4 import org.xml.sax.*;
5
6 /**
7  * Interface to get xhtml document form a string
8  *
9  *@author Tlili Khaled
10  */

11 public interface HTMLParser {
12
13     /**
14      * Description of the Method
15      *
16      *@param html Description of Parameter
17      *@return Description of the Returned Value
18      *@exception SAXException Description of Exception
19      *@exception IOException Description of Exception
20      */

21     public org.w3c.dom.Document JavaDoc parse(String JavaDoc html) throws IOException, SAXException;
22 }
23
Popular Tags