Uses of Class
org.eclipse.actf.model.dom.html.ParseException

Packages that use ParseException
org.eclipse.actf.model.dom.html This package contains HTML Parser and related utilities. 
org.eclipse.actf.model.dom.html.errorhandler This package contains implementations of error hander. 
 

Uses of ParseException in org.eclipse.actf.model.dom.html
 

Methods in org.eclipse.actf.model.dom.html that throw ParseException
 Node IParser.getNode()
          Gets a Node or EndTagfrom a currently reading stream as a result of tokenizing.
 boolean IErrorHandler.handleError(int code, IParser parser, Node errorNode)
          Handles error whose type is specified by code
 Node IHTMLParser.parse(InputStream is)
          Parses an HTML document and return its top element.
 Node IHTMLParser.parse(InputStream is, String charEncoding)
          Parses a HTML document and return its top element.
 Node IHTMLParser.parseSwitchEnc(InputStream is)
          Parses a HTML document and return its top element.
 Node IHTMLParser.parseSwitchEnc(InputStream is, String defaultEncoding)
          Parses a HTML document and return its top element.
 

Uses of ParseException in org.eclipse.actf.model.dom.html.errorhandler
 

Methods in org.eclipse.actf.model.dom.html.errorhandler that throw ParseException
 boolean UnknownElementErrorHandler.handleError(int code, IParser parser, Node errorNode)
           
 boolean FormInserter.handleError(int code, IParser parser, Node errorNode)
           
 boolean FormExpander.handleError(int code, IParser parser, Node errorNode)
          Find the last FORM element and relink it to the lowest position whereas it covers its start and end tag.
 boolean AnchorUnderAnchorHandler.handleError(int code, IParser parser, Node errorNode)
           
 boolean HTMLErrorHandler.handleError(int code, IParser parser, Node errorNode)
          Searches proper a parent node of node.
 boolean TRErrorHandler.handleError(int code, IParser parser, Node errorNode)