Sharkysoft home

lava.text.html
Class HtmlComponent

java.lang.Object
  |
  +--lava.text.html.HtmlComponent
Direct Known Subclasses:
HtmlRegularTag, HtmlSpecialTag, HtmlText

public abstract class HtmlComponent
extends java.lang.Object

Parsed HTML element.

Details: This class is the base class for all types of HTML elements that HtmlParser.parse can return.

Version:
2000.12.22

Method Summary
 java.lang.String getOriginalSource()
           
abstract  java.lang.String toString()
          Generates string representation.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

getOriginalSource

public java.lang.String getOriginalSource()

toString

public abstract java.lang.String toString()
Generates string representation.

Details: toString returns a string representation of this HTML component. The representation may not be identical to the original HTML source that was parsed to construct this component.

Overrides:
toString in class java.lang.Object
Returns:
the string

Sharkysoft home