HTML Parser Home Page

Serialized Form


Package org.htmlparser

Class org.htmlparser.Attribute extends Object implements Serializable

Serialized Fields

mName

String mName
The name of this attribute. The part before the equals sign, or the stand-alone attribute. This will be null if the attribute is whitespace.


mAssignment

String mAssignment
The assignment string of the attribute. The equals sign. This will be null if the attribute is a stand-alone attribute.


mValue

String mValue
The value of the attribute. The part after the equals sign. This will be null if the attribute is an empty or stand-alone attribute.


mQuote

char mQuote
The quote, if any, surrounding the value of the attribute, if any. This will be zero if there are no quotes around the value.

Class org.htmlparser.Parser extends Object implements Serializable

Serialized Fields

mFeedback

ParserFeedback mFeedback
Feedback object.


mLexer

Lexer mLexer
The html lexer associated with this parser.

Class org.htmlparser.PrototypicalNodeFactory extends Object implements Serializable

Serialized Fields

mText

Text mText
The prototypical text node.


mRemark

Remark mRemark
The prototypical remark node.


mTag

Tag mTag
The prototypical tag node.


mBlastocyst

Map<K,V> mBlastocyst
The list of tags to return. The list is keyed by tag name.


Package org.htmlparser.beans

Class org.htmlparser.beans.BeanyBaby extends JFrame implements Serializable

Serialized Fields

mTrail

Vector<E> mTrail
Bread crumb trail of visited URLs.


mCrumb

int mCrumb
Current position on the bread crumb trail.


mLinkBean

HTMLLinkBean mLinkBean

mForward

JMenuItem mForward

mBack

JMenuItem mBack

mCollapse

JCheckBoxMenuItem mCollapse

mTextField

JTextField mTextField

mSplitPane

JSplitPane mSplitPane

mLinks

JCheckBoxMenuItem mLinks

mStringBean

HTMLTextBean mStringBean

mNobreak

JCheckBoxMenuItem mNobreak

Class org.htmlparser.beans.FilterBean extends Object implements Serializable

Serialized Fields

mPropertySupport

PropertyChangeSupport mPropertySupport
Bound property support.


mParser

Parser mParser
The parser used to filter.


mFilters

NodeFilter[] mFilters
The filter set.


mNodes

NodeList mNodes
The nodes extracted from the URL.


mRecursive

boolean mRecursive
The recursion behaviour for elements of the filter array. If true the filters are applied recursively.

See Also:
NodeList.extractAllNodesThatMatch(NodeFilter, boolean).

Class org.htmlparser.beans.HTMLLinkBean extends JList implements Serializable

Serialized Fields

mBean

LinkBean mBean
The underlying bean that provides our htmlparser specific properties.

Class org.htmlparser.beans.HTMLTextBean extends JTextArea implements Serializable

Serialized Fields

mBean

StringBean mBean
The underlying bean that provides our htmlparser specific properties.

Class org.htmlparser.beans.LinkBean extends Object implements Serializable

Serialized Fields

mPropertySupport

PropertyChangeSupport mPropertySupport
Bound property support.


mLinks

URL[] mLinks
The strings extracted from the URL.


mParser

Parser mParser
The parser used to extract strings.

Class org.htmlparser.beans.StringBean extends NodeVisitor implements Serializable

Serialized Fields

mPropertySupport

PropertyChangeSupport mPropertySupport
Bound property support.


mParser

Parser mParser
The parser used to extract strings.


mStrings

String mStrings
The strings extracted from the URL.


mLinks

boolean mLinks
If true the link URLs are embedded in the text output.


mReplaceSpace

boolean mReplaceSpace
If true regular space characters are substituted for non-breaking spaces in the text output.


mCollapse

boolean mCollapse
If true sequences of whitespace characters are replaced with a single space character.


mCollapseState

int mCollapseState
The state of the collapse processiung state machine.


mBuffer

StringBuffer mBuffer
The buffer text is stored in while traversing the HTML.


mIsScript

boolean mIsScript
Set true when traversing a SCRIPT tag.


mIsPre

boolean mIsPre
Set true when traversing a PRE tag.


mIsStyle

boolean mIsStyle
Set true when traversing a STYLE tag.


Package org.htmlparser.filters

Class org.htmlparser.filters.AndFilter extends Object implements Serializable

Serialized Fields

mPredicates

NodeFilter[] mPredicates
The predicates that are to be and'ed together;

Class org.htmlparser.filters.CssSelectorNodeFilter extends Object implements Serializable

Serialized Fields

therule

NodeFilter therule

m

Matcher m

tokentype

int tokentype

token

String token

Class org.htmlparser.filters.HasAttributeFilter extends Object implements Serializable

Serialized Fields

mAttribute

String mAttribute
The attribute to check for.


mValue

String mValue
The value to check for.

Class org.htmlparser.filters.HasChildFilter extends Object implements Serializable

Serialized Fields

mChildFilter

NodeFilter mChildFilter
The filter to apply to children.


mRecursive

boolean mRecursive
Performs a recursive search down the node heirarchy if true.

Class org.htmlparser.filters.HasParentFilter extends Object implements Serializable

Serialized Fields

mParentFilter

NodeFilter mParentFilter
The filter to apply to the parent.


mRecursive

boolean mRecursive
Performs a recursive search up the node heirarchy if true.

Class org.htmlparser.filters.HasSiblingFilter extends Object implements Serializable

Serialized Fields

mSiblingFilter

NodeFilter mSiblingFilter
The filter to apply to the sibling.

Class org.htmlparser.filters.IsEqualFilter extends Object implements Serializable

Serialized Fields

mNode

Node mNode
The node to match.

Class org.htmlparser.filters.LinkRegexFilter extends Object implements Serializable

Serialized Fields

mRegex

Pattern mRegex
The regular expression to use on the link.

Class org.htmlparser.filters.LinkStringFilter extends Object implements Serializable

Serialized Fields

mPattern

String mPattern
The pattern to search for in the link.


mCaseSensitive

boolean mCaseSensitive
Flag indicating case sensitive/insensitive search.

Class org.htmlparser.filters.NodeClassFilter extends Object implements Serializable

Serialized Fields

mClass

Class<T> mClass
The class to match.

Class org.htmlparser.filters.NotFilter extends Object implements Serializable

Serialized Fields

mPredicate

NodeFilter mPredicate
The filter to gainsay.

Class org.htmlparser.filters.OrFilter extends Object implements Serializable

Serialized Fields

mPredicates

NodeFilter[] mPredicates
The predicates that are to be or'ed together;

Class org.htmlparser.filters.RegexFilter extends Object implements Serializable

Serialized Fields

mPatternString

String mPatternString
The regular expression to search for.


mPattern

Pattern mPattern
The compiled regular expression to search for.


mStrategy

int mStrategy
The match strategy.

See Also:
RegexFilter.RegexFilter(String, int)

Class org.htmlparser.filters.StringFilter extends Object implements Serializable

Serialized Fields

mPattern

String mPattern
The string to search for.


mUpperPattern

String mUpperPattern
The string to really search for (converted to uppercase if necessary).


mCaseSensitive

boolean mCaseSensitive
Case sensitive toggle. If true strings are compared with case sensitivity.


mLocale

Locale mLocale
The locale to use converting to uppercase in case insensitive searches.

Class org.htmlparser.filters.TagNameFilter extends Object implements Serializable

Serialized Fields

mName

String mName
The tag name to match.


Package org.htmlparser.http

Class org.htmlparser.http.Cookie extends Object implements Serializable

Serialized Fields

mName

String mName
The name of the cookie.


mValue

String mValue
The cookie value.


mComment

String mComment
Describes the cookie's use.


mDomain

String mDomain
Domain that sees cookie.


mExpiry

Date mExpiry
Cookie expires after this date.


mPath

String mPath
URLs that see the cookie.


mSecure

boolean mSecure
Use SSL.


mVersion

int mVersion
If Version=1 it means RFC 2109++ style cookies.


Package org.htmlparser.lexer

Class org.htmlparser.lexer.Cursor extends Object implements Serializable

Serialized Fields

mPosition

int mPosition
This cursor's position.


mPage

Page mPage
This cursor's page.

Class org.htmlparser.lexer.InputStreamSource extends Source implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Deserialization support.

Throws:
IOException - If deserialization has a problem.
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialization support.

Throws:
IOException - If serialization has a problem.
Serialized Fields

mEncoding

String mEncoding
The character set in use.


mBuffer

char[] mBuffer
The characters read so far.


mLevel

int mLevel
The number of valid bytes in the buffer.


mOffset

int mOffset
The offset of the next byte returned by read().


mMark

int mMark
The bookmark.

Class org.htmlparser.lexer.Lexer extends Object implements Serializable

Serialized Fields

mPage

Page mPage
The page lexemes are retrieved from.


mCursor

Cursor mCursor
The current position on the page.


mFactory

NodeFactory mFactory
The factory for new nodes.

Class org.htmlparser.lexer.Page extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Deserialize the page. For details see writeObject().

Throws:
IOException - If there is a deserialization problem with the stream.
ClassNotFoundException - If the deserialized class can't be located with the current classpath and class loader.

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialize the page. There are two modes to serializing a page based on the connected state. If connected, the URL and the current offset is saved, while if disconnected, the underling source is saved.

Throws:
IOException - If there is a serialization problem.
Serialized Fields

mUrl

String mUrl
The URL this page is coming from. Cached value of getConnection().toExternalForm() or setUrl().


mBaseUrl

String mBaseUrl
The base URL for this page.


mSource

Source mSource
The source of characters.


mIndex

PageIndex mIndex
Character positions of the first character in each line.

Class org.htmlparser.lexer.PageAttribute extends Attribute implements Serializable

Serialized Fields

mPage

Page mPage
The page this attribute is extracted from.


mNameStart

int mNameStart
The starting offset of the name within the page. If negative, the name is considered null.


mNameEnd

int mNameEnd
The ending offset of the name within the page.


mValueStart

int mValueStart
The starting offset of the value within the page. If negative, the value is considered null.


mValueEnd

int mValueEnd
The ending offset of the name within the page.

Class org.htmlparser.lexer.PageIndex extends Object implements Serializable

Serialized Fields

mIncrement

int mIncrement
Increment for allocations.


mCount

int mCount
The number of valid elements.


mIndices

int[] mIndices
The elements.


mPage

Page mPage
The page associated with this index.

Class org.htmlparser.lexer.Source extends Reader implements Serializable

Class org.htmlparser.lexer.StringSource extends Source implements Serializable

Serialized Fields

mString

String mString
The source of characters.


mOffset

int mOffset
The current offset into the string.


mEncoding

String mEncoding
The encoding to report. Only used by StringSource.getEncoding().


mMark

int mMark
The bookmark.


Package org.htmlparser.lexerapplications.thumbelina

Class org.htmlparser.lexerapplications.thumbelina.Picture extends Rectangle implements Serializable

Serialized Fields

TRANSFER_SIZE

int TRANSFER_SIZE
Copy buffer size. Resources are moved to disk in chunks this size or less.


mURL

URL mURL
The URL for the picture.


mListener

PictureListener mListener
The object to notify about picture events;


mValid

boolean mValid
Flag indicating the image is valid.


mOrigin

Point mOrigin
The upper left hand corner of the image. This doesn't change, even if the image is cropped. For example, if the left half of the image is obscured by another, the Rectangle fields x, y, width and height will change, but the origin remains the same.


mExtent

Point mExtent
The lower right hand corner of the image. This doesn't change, even if the image is cropped. For example, if the right half of the image is obscured by another, the Rectangle fields width and height will change, but the extent remains the same.


mImage

Image mImage
The cached image.


mLocalFile

File mLocalFile
The local file containing the picture.

Class org.htmlparser.lexerapplications.thumbelina.PicturePanel extends JPanel implements Serializable

Serialized Fields

mThumbelina

Thumbelina mThumbelina
The thumbelina object in use.


mMosaic

TileSet mMosaic
The display mosaic.


mPreferredSize

Dimension mPreferredSize
The preferred size of this component. null initially, caches the results of calculatePreferredSize ().

Class org.htmlparser.lexerapplications.thumbelina.Thumbelina extends JPanel implements Serializable

Serialized Fields

mUrls

ArrayList<E> mUrls
URL's to visit.


mVisited

HashMap<K,V> mVisited
URL's visited.


mRequested

HashMap<K,V> mRequested
Images requested.


mTracked

HashMap<K,V> mTracked
Images being tracked currently.


mThread

Thread mThread
Background thread.


mActive

boolean mActive
Activity state. true means processing URLS, false not.


mSequencer

Sequencer mSequencer
The picture sequencer.


mPicturePanel

PicturePanel mPicturePanel
The central area for pictures.


mPropertySupport

PropertyChangeSupport mPropertySupport
Bound property support.


mCurrentURL

String mCurrentURL
The URL being currently being examined.


mDiscardCGI

boolean mDiscardCGI
If true, does not follow links containing cgi calls.


mDiscardQueries

boolean mDiscardQueries
If true, does not follow links containing queries (?).


mBackgroundToggle

JCheckBox mBackgroundToggle
Background thread checkbox in status bar.


mHistory

JList mHistory
History list.


mPicturePanelScroller

JScrollPane mPicturePanelScroller
Scroller for the picture panel.


mHistoryScroller

JScrollPane mHistoryScroller
Scroller for the history list.


mMainArea

JSplitPane mMainArea
Main panel in central area.


mPowerBar

JPanel mPowerBar
Status bar.


mQueueProgress

JProgressBar mQueueProgress
Image request queue monitor in status bar.


mReadyProgress

JProgressBar mReadyProgress
Image ready queue monitor in status bar.


mRunToggle

JCheckBox mRunToggle
Sequencer thread toggle in status bar.


mSpeedSlider

JSlider mSpeedSlider
Sequencer speed slider in status bar.


mUrlText

JTextField mUrlText
URL report in status bar.


mQueueSize

JLabel mQueueSize
URL queue size display in status bar.


mVisitedSize

JLabel mVisitedSize
URL visited count display in status bar.

Class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame extends JFrame implements Serializable

Serialized Fields

mMenu

JMenuBar mMenu
Main menu.


mURL

JMenu mURL
URL submenu.


mOpen

JMenuItem mOpen
Open menu item.


mGoogle

JMenuItem mGoogle
Google menu item.


mSeparator1

JSeparator mSeparator1
MRU list separator #1.


mSeparator2

JSeparator mSeparator2
MRU list separator #2.


mExit

JMenuItem mExit
Exit menu item.


mView

JMenu mView
View submenu.


mStatusVisible

JCheckBoxMenuItem mStatusVisible
Status bar visible menu item.


mHistoryVisible

JCheckBoxMenuItem mHistoryVisible
History list visible menu item.


mCommand

JMenu mCommand
Vommand menu.


mReset

JMenuItem mReset
Reset menu item.


mClear

JMenuItem mClear
Clear menu item


mHelp

JMenu mHelp
Help submenu.


mAbout

JMenuItem mAbout
About menu item.

Class org.htmlparser.lexerapplications.thumbelina.TileSet extends Canvas implements Serializable

Serialized Fields

mRegions

ArrayList<E> mRegions
The list of Tiles.


origin

Point origin

last

Rectangle last

Package org.htmlparser.nodes

Class org.htmlparser.nodes.AbstractNode extends Object implements Serializable

Serialized Fields

mPage

Page mPage
The page this node came from.


nodeBegin

int nodeBegin
The beginning position of the tag in the line


nodeEnd

int nodeEnd
The ending position of the tag in the line


parent

Node parent
The parent of this node.


children

NodeList children
The children of this node.

Class org.htmlparser.nodes.RemarkNode extends AbstractNode implements Serializable

Serialized Fields

mText

String mText
The contents of the remark node, or override text.

Class org.htmlparser.nodes.TagNode extends AbstractNode implements Serializable

Serialized Fields

mScanner

Scanner mScanner
The scanner for this tag.


mAttributes

Vector<E> mAttributes
The tag attributes. Objects of type Attribute. The first element is the tag name, subsequent elements being either whitespace or real attributes.

Class org.htmlparser.nodes.TextNode extends AbstractNode implements Serializable

Serialized Fields

mText

String mText
The contents of the string node, or override text.


Package org.htmlparser.parserapplications.filterbuilder

Class org.htmlparser.parserapplications.filterbuilder.Filter extends JComponent implements Serializable

Class org.htmlparser.parserapplications.filterbuilder.FilterBuilder extends JFrame implements Serializable

Serialized Fields

mBasePoint

Point mBasePoint
The relative position of the mouse while dragging.


mSelection

Vector<E> mSelection
Selected commands.


mMoved

boolean mMoved
If true selection moved.


mDropTarget

DropTarget mDropTarget
This component is a drop target.


mDragSource

DragSource mDragSource
Enables this component to be a Drag Source.


mCurrentComponent

Component mCurrentComponent
Kludge: Used by actionPerformed/filterAction to remember the filter menu item.


mMainPanel

JPanel mMainPanel
The main panel GUI component.


mMainScroller

JScrollPane mMainScroller
The main panel scrolling GUI component.


mURLField

JTextField mURLField
The URL input GUI component.


mOutput

JDesktopPane mOutput
The output panel GUI component.

Class org.htmlparser.parserapplications.filterbuilder.HtmlTreeCellRenderer extends DefaultTreeCellRenderer implements Serializable

Class org.htmlparser.parserapplications.filterbuilder.SubFilterList extends JPanel implements Serializable

Serialized Fields

mExtra

int mExtra
Padding for the drop target.


mSpacer

Component mSpacer
The drop target spacer at the bottom of the list.


mHome

Filter mHome
The parent filter wrapper.


mTitle

String mTitle
The textual title for the list.


mMax

int mMax
The number of filters limit.


Package org.htmlparser.parserapplications.filterbuilder.layouts

Class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager extends Object implements Serializable

Class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager extends Object implements Serializable


Package org.htmlparser.parserapplications.filterbuilder.wrappers

Class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper extends Filter implements Serializable

Serialized Fields

mContainer

SubFilterList mContainer
The drop target container.


mFilter

AndFilter mFilter
The underlying filter.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

HasAttributeFilter mFilter
The underlying filter.


mAttributeName

JComboBox mAttributeName
Combo box for attribute name.


mValued

JCheckBox mValued
The check box for has value.


mAttributeValue

JTextArea mAttributeValue
Value to check for.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

HasChildFilter mFilter
The underlying filter.


mRecursive

JCheckBox mRecursive
The check box for recursion.


mContainer

SubFilterList mContainer
The drop target container.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

HasParentFilter mFilter
The underlying filter.


mRecursive

JCheckBox mRecursive
The check box for recursion.


mContainer

SubFilterList mContainer
The drop target container.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

HasSiblingFilter mFilter
The underlying filter.


mContainer

SubFilterList mContainer
The drop target container.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

NodeClassFilter mFilter
The underlying filter.


mClass

JComboBox mClass
Combo box for strategy.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper extends Filter implements Serializable

Serialized Fields

mContainer

SubFilterList mContainer
The drop target container.


mFilter

NotFilter mFilter
The underlying filter.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper extends Filter implements Serializable

Serialized Fields

mContainer

SubFilterList mContainer
The drop target container.


mFilter

OrFilter mFilter
The underlying filter.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

RegexFilter mFilter
The underlying filter.


mPattern

JTextArea mPattern
Text to check for


mStrategy

JComboBox mStrategy
Combo box for strategy.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

StringFilter mFilter
The underlying filter.


mPattern

JTextArea mPattern
Text to check for.


mCaseSensitivity

JCheckBox mCaseSensitivity
The check box for case sensitivity.


mLocale

JComboBox mLocale
Combo box for locale.

Class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper extends Filter implements Serializable

Serialized Fields

mFilter

TagNameFilter mFilter
The underlying filter.


mName

JComboBox mName
Combo box for tag name.


Package org.htmlparser.scanners

Class org.htmlparser.scanners.CompositeTagScanner extends TagScanner implements Serializable

Class org.htmlparser.scanners.JspScanner extends TagScanner implements Serializable

Class org.htmlparser.scanners.ScriptScanner extends CompositeTagScanner implements Serializable

Class org.htmlparser.scanners.StyleScanner extends CompositeTagScanner implements Serializable

Class org.htmlparser.scanners.TagScanner extends Object implements Serializable


Package org.htmlparser.tags

Class org.htmlparser.tags.AppletTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.BaseHrefTag extends TagNode implements Serializable

Class org.htmlparser.tags.BodyTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.Bullet extends CompositeTag implements Serializable

Class org.htmlparser.tags.BulletList extends CompositeTag implements Serializable

Class org.htmlparser.tags.CompositeTag extends TagNode implements Serializable

Serialized Fields

mEndTag

Tag mEndTag
The tag that causes this tag to finish. May be a virtual tag generated by the scanning logic.

Class org.htmlparser.tags.DefinitionList extends CompositeTag implements Serializable

Class org.htmlparser.tags.DefinitionListBullet extends CompositeTag implements Serializable

Class org.htmlparser.tags.Div extends CompositeTag implements Serializable

Class org.htmlparser.tags.DoctypeTag extends TagNode implements Serializable

Class org.htmlparser.tags.FormTag extends CompositeTag implements Serializable

Serialized Fields

mFormLocation

String mFormLocation
This is the derived form location, based on action.

Class org.htmlparser.tags.FrameSetTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.FrameTag extends TagNode implements Serializable

Class org.htmlparser.tags.HeadingTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.HeadTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.Html extends CompositeTag implements Serializable

Class org.htmlparser.tags.ImageTag extends TagNode implements Serializable

Serialized Fields

imageURL

String imageURL
Holds the set value of the SRC attribute, since this can differ from the attribute value due to relative references resolved by the scanner.

Class org.htmlparser.tags.InputTag extends TagNode implements Serializable

Class org.htmlparser.tags.JspTag extends TagNode implements Serializable

Class org.htmlparser.tags.LabelTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.LinkTag extends CompositeTag implements Serializable

Serialized Fields

mLink

String mLink
The URL where the link points to


mailLink

boolean mailLink
Set to true when the link was a mailto: URL.


javascriptLink

boolean javascriptLink
Set to true when the link was a javascript: URL.

Class org.htmlparser.tags.MetaTag extends TagNode implements Serializable

Class org.htmlparser.tags.ObjectTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.OptionTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.ParagraphTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.ProcessingInstructionTag extends TagNode implements Serializable

Class org.htmlparser.tags.ScriptTag extends CompositeTag implements Serializable

Serialized Fields

mCode

String mCode
Script code if different from the page contents.

Class org.htmlparser.tags.SelectTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.Span extends CompositeTag implements Serializable

Class org.htmlparser.tags.StyleTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.TableColumn extends CompositeTag implements Serializable

Class org.htmlparser.tags.TableHeader extends CompositeTag implements Serializable

Class org.htmlparser.tags.TableRow extends CompositeTag implements Serializable

Class org.htmlparser.tags.TableTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.TextareaTag extends CompositeTag implements Serializable

Class org.htmlparser.tags.TitleTag extends CompositeTag implements Serializable


Package org.htmlparser.util

Class org.htmlparser.util.ChainedException extends Exception implements Serializable

Serialized Fields

throwable

Throwable throwable

Class org.htmlparser.util.CharacterReference extends Object implements Serializable

Serialized Fields

mCharacter

int mCharacter
The character value as an integer.


mKernel

String mKernel
This entity reference kernel. The text between the ampersand and the semicolon.

Class org.htmlparser.util.DefaultParserFeedback extends Object implements Serializable

Serialized Fields

mMode

int mMode
Verbosity level. Corresponds to constructor arguments:
   DEBUG = 2;
   NORMAL = 1;
   QUIET = 0;
 

Class org.htmlparser.util.EncodingChangeException extends ParserException implements Serializable

Class org.htmlparser.util.NodeList extends Object implements Serializable

Serialized Fields

nodeData

Node[] nodeData

size

int size

capacity

int capacity

capacityIncrement

int capacityIncrement

Class org.htmlparser.util.ParserException extends ChainedException implements Serializable


© 2006 Derrick Oswald
Sep 17, 2006

HTML Parser is an open source library released under Common Public License. SourceForge.net