Sharkysoft home

lava.text.html
Class HtmlError

java.lang.Object
  |
  +--lava.text.html.HtmlComponent
        |
        +--lava.text.html.HtmlText
              |
              +--lava.text.html.HtmlError

public class HtmlError
extends HtmlText

Malformed HTML source.

Details: This class represents HTML source that had to be rendered verbatim due to the parser's inability to parse it. At times this may indicate a shortcoming in the parser, but mostly likely it is due to errors in the source HTML. A reasonable browser would probably display this element as regular HTML text. The parser that created this element will attempt to resume normal parsing right after the last character represented by this element.

Version:
2000.12.21

Method Summary
 java.lang.String toString()
          Returns error text.
 
Methods inherited from class lava.text.html.HtmlText
getText, parse
 
Methods inherited from class lava.text.html.HtmlComponent
getOriginalSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

toString

public java.lang.String toString()
Returns error text.

Details: toString returns the string given in the constructor.

Overrides:
toString in class HtmlText
Returns:
the error string
Since:
2000.12.21

Sharkysoft home