Serialized Form
-
Package org.htmlparser
-
Class org.htmlparser.Attribute extends java.lang.Object implements Serializable
-
Serialized Fields
-
mAssignment
java.lang.String mAssignment
The assignment string of the attribute. The equals sign. This will benull
if the attribute is a stand-alone attribute. -
mName
java.lang.String mName
The name of this attribute. The part before the equals sign, or the stand-alone attribute. This will benull
if the attribute is whitespace. -
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. -
mValue
java.lang.String mValue
The value of the attribute. The part after the equals sign. This will benull
if the attribute is an empty or stand-alone attribute.
-
-
-
Class org.htmlparser.Parser extends java.lang.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 java.lang.Object implements Serializable
-
-
Package org.htmlparser.beans
-
Class org.htmlparser.beans.BeanyBaby extends javax.swing.JFrame implements Serializable
-
Serialized Fields
-
mBack
javax.swing.JMenuItem mBack
-
mCollapse
javax.swing.JCheckBoxMenuItem mCollapse
-
mCrumb
int mCrumb
Current position on the bread crumb trail. -
mForward
javax.swing.JMenuItem mForward
-
mLinkBean
HTMLLinkBean mLinkBean
-
mLinks
javax.swing.JCheckBoxMenuItem mLinks
-
mNobreak
javax.swing.JCheckBoxMenuItem mNobreak
-
mSplitPane
javax.swing.JSplitPane mSplitPane
-
mStringBean
HTMLTextBean mStringBean
-
mTextField
javax.swing.JTextField mTextField
-
mTrail
java.util.Vector mTrail
Bread crumb trail of visited URLs.
-
-
-
Class org.htmlparser.beans.FilterBean extends java.lang.Object implements Serializable
-
Serialized Fields
-
mFilters
NodeFilter[] mFilters
The filter set. -
mNodes
NodeList mNodes
The nodes extracted from the URL. -
mParser
Parser mParser
The parser used to filter. -
mPropertySupport
java.beans.PropertyChangeSupport mPropertySupport
Bound property support. -
mRecursive
boolean mRecursive
The recursion behaviour for elements of the filter array. Iftrue
the filters are applied recursively.
-
-
-
Class org.htmlparser.beans.HTMLLinkBean extends javax.swing.JList implements Serializable
-
Serialized Fields
-
mBean
LinkBean mBean
The underlying bean that provides our htmlparser specific properties.
-
-
-
Class org.htmlparser.beans.HTMLTextBean extends javax.swing.JTextArea implements Serializable
-
Serialized Fields
-
mBean
StringBean mBean
The underlying bean that provides our htmlparser specific properties.
-
-
-
Class org.htmlparser.beans.LinkBean extends java.lang.Object implements Serializable
-
Serialized Fields
-
mLinks
java.net.URL[] mLinks
The strings extracted from the URL. -
mParser
Parser mParser
The parser used to extract strings. -
mPropertySupport
java.beans.PropertyChangeSupport mPropertySupport
Bound property support.
-
-
-
Class org.htmlparser.beans.StringBean extends NodeVisitor implements Serializable
-
Serialized Fields
-
mBuffer
java.lang.StringBuffer mBuffer
The buffer text is stored in while traversing the HTML. -
mCollapse
boolean mCollapse
Iftrue
sequences of whitespace characters are replaced with a single space character. -
mCollapseState
int mCollapseState
The state of the collapse processiung state machine. -
mIsPre
boolean mIsPre
Settrue
when traversing a PRE tag. -
mIsScript
boolean mIsScript
Settrue
when traversing a SCRIPT tag. -
mIsStyle
boolean mIsStyle
Settrue
when traversing a STYLE tag. -
mLinks
boolean mLinks
Iftrue
the link URLs are embedded in the text output. -
mParser
Parser mParser
The parser used to extract strings. -
mPropertySupport
java.beans.PropertyChangeSupport mPropertySupport
Bound property support. -
mReplaceSpace
boolean mReplaceSpace
Iftrue
regular space characters are substituted for non-breaking spaces in the text output. -
mStrings
java.lang.String mStrings
The strings extracted from the URL.
-
-
-
-
Package org.htmlparser.filters
-
Class org.htmlparser.filters.AndFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mPredicates
NodeFilter[] mPredicates
The predicates that are to be and'ed together;
-
-
-
Class org.htmlparser.filters.CssSelectorNodeFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
m
java.util.regex.Matcher m
-
therule
NodeFilter therule
-
token
java.lang.String token
-
tokentype
int tokentype
-
-
-
Class org.htmlparser.filters.HasAttributeFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mAttribute
java.lang.String mAttribute
The attribute to check for. -
mValue
java.lang.String mValue
The value to check for.
-
-
-
Class org.htmlparser.filters.HasChildFilter extends java.lang.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 iftrue
.
-
-
-
Class org.htmlparser.filters.HasParentFilter extends java.lang.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 iftrue
.
-
-
-
Class org.htmlparser.filters.HasSiblingFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mSiblingFilter
NodeFilter mSiblingFilter
The filter to apply to the sibling.
-
-
-
Class org.htmlparser.filters.IsEqualFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mNode
Node mNode
The node to match.
-
-
-
Class org.htmlparser.filters.LinkRegexFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mRegex
java.util.regex.Pattern mRegex
The regular expression to use on the link.
-
-
-
Class org.htmlparser.filters.LinkStringFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mCaseSensitive
boolean mCaseSensitive
Flag indicating case sensitive/insensitive search. -
mPattern
java.lang.String mPattern
The pattern to search for in the link.
-
-
-
Class org.htmlparser.filters.NodeClassFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mClass
java.lang.Class mClass
The class to match.
-
-
-
Class org.htmlparser.filters.NotFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mPredicate
NodeFilter mPredicate
The filter to gainsay.
-
-
-
Class org.htmlparser.filters.OrFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mPredicates
NodeFilter[] mPredicates
The predicates that are to be or'ed together;
-
-
-
Class org.htmlparser.filters.RegexFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mPattern
java.util.regex.Pattern mPattern
The compiled regular expression to search for. -
mPatternString
java.lang.String mPatternString
The regular expression to search for. -
mStrategy
int mStrategy
The match strategy.- See Also:
RegexFilter(String, int)
-
-
-
Class org.htmlparser.filters.StringFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mCaseSensitive
boolean mCaseSensitive
Case sensitive toggle. Iftrue
strings are compared with case sensitivity. -
mLocale
java.util.Locale mLocale
The locale to use converting to uppercase in case insensitive searches. -
mPattern
java.lang.String mPattern
The string to search for. -
mUpperPattern
java.lang.String mUpperPattern
The string to really search for (converted to uppercase if necessary).
-
-
-
Class org.htmlparser.filters.TagNameFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mName
java.lang.String mName
The tag name to match.
-
-
-
Class org.htmlparser.filters.XorFilter extends java.lang.Object implements Serializable
-
Serialized Fields
-
mPredicates
NodeFilter[] mPredicates
The predicates that are to be xor'ed together;
-
-
-
-
Package org.htmlparser.http
-
Class org.htmlparser.http.Cookie extends java.lang.Object implements Serializable
-
Serialized Fields
-
mComment
java.lang.String mComment
Describes the cookie's use. -
mDomain
java.lang.String mDomain
Domain that sees cookie. -
mExpiry
java.util.Date mExpiry
Cookie expires after this date. -
mName
java.lang.String mName
The name of the cookie. -
mPath
java.lang.String mPath
URLs that see the cookie. -
mSecure
boolean mSecure
Use SSL. -
mValue
java.lang.String mValue
The cookie value. -
mVersion
int mVersion
If Version=1 it means RFC 2109++ style cookies.
-
-
-
-
Package org.htmlparser.lexer
-
Class org.htmlparser.lexer.Cursor extends java.lang.Object implements Serializable
-
Serialized Fields
-
mPage
Page mPage
This cursor's page. -
mPosition
int mPosition
This cursor's position.
-
-
-
Class org.htmlparser.lexer.InputStreamSource extends Source implements Serializable
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException
Deserialization support.- Throws:
java.io.IOException
- If deserialization has a problem.java.lang.ClassNotFoundException
-
writeObject
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException
Serialization support.- Throws:
java.io.IOException
- If serialization has a problem.
-
-
Serialized Fields
-
mBuffer
char[] mBuffer
The characters read so far. -
mEncoding
java.lang.String mEncoding
The character set in use. -
mLevel
int mLevel
The number of valid bytes in the buffer. -
mMark
int mMark
The bookmark. -
mOffset
int mOffset
The offset of the next byte returned by read().
-
-
-
Class org.htmlparser.lexer.Lexer extends java.lang.Object implements Serializable
-
Serialized Fields
-
mCursor
Cursor mCursor
The current position on the page. -
mFactory
NodeFactory mFactory
The factory for new nodes. -
mPage
Page mPage
The page lexemes are retrieved from.
-
-
-
Class org.htmlparser.lexer.Page extends java.lang.Object implements Serializable
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException
Deserialize the page. For details seewriteObject()
.- Throws:
java.io.IOException
- If there is a deserialization problem with the stream.java.lang.ClassNotFoundException
- If the deserialized class can't be located with the current classpath and class loader.
-
writeObject
private void writeObject(java.io.ObjectOutputStream out) throws java.io.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:
java.io.IOException
- If there is a serialization problem.
-
-
Serialized Fields
-
mBaseUrl
java.lang.String mBaseUrl
The base URL for this page. -
mIndex
PageIndex mIndex
Character positions of the first character in each line. -
mSource
Source mSource
The source of characters. -
mUrl
java.lang.String mUrl
The URL this page is coming from. Cached value ofgetConnection().toExternalForm()
orsetUrl()
.
-
-
-
Class org.htmlparser.lexer.PageAttribute extends Attribute implements Serializable
-
Serialized Fields
-
mNameEnd
int mNameEnd
The ending offset of the name within the page. -
mNameStart
int mNameStart
The starting offset of the name within the page. If negative, the name is considerednull
. -
mPage
Page mPage
The page this attribute is extracted from. -
mValueEnd
int mValueEnd
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 considerednull
.
-
-
-
Class org.htmlparser.lexer.PageIndex extends java.lang.Object implements Serializable
-
Serialized Fields
-
mCount
int mCount
The number of valid elements. -
mIncrement
int mIncrement
Increment for allocations. -
mIndices
int[] mIndices
The elements. -
mPage
Page mPage
The page associated with this index.
-
-
-
Class org.htmlparser.lexer.Source extends java.io.Reader implements Serializable
-
Class org.htmlparser.lexer.StringSource extends Source implements Serializable
-
Serialized Fields
-
mEncoding
java.lang.String mEncoding
The encoding to report. Only used byStringSource.getEncoding()
. -
mMark
int mMark
The bookmark. -
mOffset
int mOffset
The current offset into the string. -
mString
java.lang.String mString
The source of characters.
-
-
-
-
Package org.htmlparser.lexerapplications.thumbelina
-
Class org.htmlparser.lexerapplications.thumbelina.Picture extends java.awt.Rectangle implements Serializable
-
Serialized Fields
-
mImage
java.awt.Image mImage
The image for the picture. -
mOrigin
java.awt.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, theRectangle
fieldsx
,y
,width
andheight
will change, but the origin remains the same. -
mURL
java.net.URL mURL
The URL for the picture.
-
-
-
Class org.htmlparser.lexerapplications.thumbelina.PicturePanel extends javax.swing.JPanel implements Serializable
-
Serialized Fields
-
mMosaic
TileSet mMosaic
The display mosaic. -
mPreferredSize
java.awt.Dimension mPreferredSize
The preferred size of this component.null
initially, caches the results ofcalculatePreferredSize ()
. -
mThumbelina
Thumbelina mThumbelina
The thumbelina object in use.
-
-
-
Class org.htmlparser.lexerapplications.thumbelina.Thumbelina extends javax.swing.JPanel implements Serializable
-
Serialized Fields
-
mActive
boolean mActive
Activity state.true
means processing URLS,false
not. -
mBackgroundToggle
javax.swing.JCheckBox mBackgroundToggle
Background thread checkbox in status bar. -
mCurrentURL
java.lang.String mCurrentURL
The URL being currently being examined. -
mDiscardCGI
boolean mDiscardCGI
Iftrue
, does not follow links containing cgi calls. -
mDiscardQueries
boolean mDiscardQueries
Iftrue
, does not follow links containing queries (?). -
mHistory
javax.swing.JList mHistory
History list. -
mHistoryScroller
javax.swing.JScrollPane mHistoryScroller
Scroller for the history list. -
mMainArea
javax.swing.JSplitPane mMainArea
Main panel in central area. -
mPicturePanel
PicturePanel mPicturePanel
The central area for pictures. -
mPicturePanelScroller
javax.swing.JScrollPane mPicturePanelScroller
Scroller for the picture panel. -
mPowerBar
javax.swing.JPanel mPowerBar
Status bar. -
mPropertySupport
java.beans.PropertyChangeSupport mPropertySupport
Bound property support. -
mQueueProgress
javax.swing.JProgressBar mQueueProgress
Image request queue monitor in status bar. -
mQueueSize
javax.swing.JLabel mQueueSize
URL queue size display in status bar. -
mReadyProgress
javax.swing.JProgressBar mReadyProgress
Image ready queue monitor in status bar. -
mRequested
java.util.HashMap mRequested
Images requested. -
mRunToggle
javax.swing.JCheckBox mRunToggle
Sequencer thread toggle in status bar. -
mSequencer
Sequencer mSequencer
The picture sequencer. -
mSpeedSlider
javax.swing.JSlider mSpeedSlider
Sequencer speed slider in status bar. -
mThread
java.lang.Thread mThread
Background thread. -
mTracked
java.util.HashMap mTracked
Images being tracked currently. -
mUrls
java.util.ArrayList mUrls
URL's to visit. -
mUrlText
javax.swing.JTextField mUrlText
URL report in status bar. -
mVisited
java.util.HashMap mVisited
URL's visited. -
mVisitedSize
javax.swing.JLabel mVisitedSize
URL visited count display in status bar.
-
-
-
Class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame extends javax.swing.JFrame implements Serializable
-
Serialized Fields
-
mAbout
javax.swing.JMenuItem mAbout
About menu item. -
mClear
javax.swing.JMenuItem mClear
Clear menu item -
mCommand
javax.swing.JMenu mCommand
Vommand menu. -
mExit
javax.swing.JMenuItem mExit
Exit menu item. -
mGoogle
javax.swing.JMenuItem mGoogle
Google menu item. -
mHelp
javax.swing.JMenu mHelp
Help submenu. -
mHistoryVisible
javax.swing.JCheckBoxMenuItem mHistoryVisible
History list visible menu item. -
mMenu
javax.swing.JMenuBar mMenu
Main menu. -
mOpen
javax.swing.JMenuItem mOpen
Open menu item. -
mReset
javax.swing.JMenuItem mReset
Reset menu item. -
mSeparator1
javax.swing.JSeparator mSeparator1
MRU list separator #1. -
mSeparator2
javax.swing.JSeparator mSeparator2
MRU list separator #2. -
mStatusVisible
javax.swing.JCheckBoxMenuItem mStatusVisible
Status bar visible menu item. -
mURL
javax.swing.JMenu mURL
URL submenu. -
mView
javax.swing.JMenu mView
View submenu.
-
-
-
-
Package org.htmlparser.nodes
-
Class org.htmlparser.nodes.AbstractNode extends java.lang.Object implements Serializable
-
Class org.htmlparser.nodes.RemarkNode extends AbstractNode implements Serializable
-
Serialized Fields
-
mText
java.lang.String mText
The contents of the remark node, or override text.
-
-
-
Class org.htmlparser.nodes.TagNode extends AbstractNode implements Serializable
-
Class org.htmlparser.nodes.TextNode extends AbstractNode implements Serializable
-
Serialized Fields
-
mText
java.lang.String mText
The contents of the string node, or override text.
-
-
-
-
Package org.htmlparser.parserapplications.filterbuilder
-
Class org.htmlparser.parserapplications.filterbuilder.Filter extends javax.swing.JComponent implements Serializable
-
Class org.htmlparser.parserapplications.filterbuilder.FilterBuilder extends javax.swing.JFrame implements Serializable
-
Serialized Fields
-
mBasePoint
java.awt.Point mBasePoint
The relative position of the mouse while dragging. -
mCurrentComponent
java.awt.Component mCurrentComponent
Kludge: Used by actionPerformed/filterAction to remember the filter menu item. -
mDragSource
java.awt.dnd.DragSource mDragSource
Enables this component to be a Drag Source. -
mDropTarget
java.awt.dnd.DropTarget mDropTarget
This component is a drop target. -
mMainPanel
javax.swing.JPanel mMainPanel
The main panel GUI component. -
mMainScroller
javax.swing.JScrollPane mMainScroller
The main panel scrolling GUI component. -
mMoved
boolean mMoved
If true selection moved. -
mOutput
javax.swing.JDesktopPane mOutput
The output panel GUI component. -
mSelection
java.util.Vector mSelection
Selected commands. -
mURLField
javax.swing.JTextField mURLField
The URL input GUI component.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.HtmlTreeCellRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable
-
Class org.htmlparser.parserapplications.filterbuilder.SubFilterList extends javax.swing.JPanel implements Serializable
-
Serialized Fields
-
mExtra
int mExtra
Padding for the drop target. -
mHome
Filter mHome
The parent filter wrapper. -
mMax
int mMax
The number of filters limit. -
mSpacer
java.awt.Component mSpacer
The drop target spacer at the bottom of the list. -
mTitle
java.lang.String mTitle
The textual title for the list.
-
-
-
-
Package org.htmlparser.parserapplications.filterbuilder.layouts
-
Class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager extends java.lang.Object implements Serializable
-
Class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager extends java.lang.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
-
mAttributeName
javax.swing.JComboBox mAttributeName
Combo box for attribute name. -
mAttributeValue
javax.swing.JTextArea mAttributeValue
Value to check for. -
mFilter
HasAttributeFilter mFilter
The underlying filter. -
mValued
javax.swing.JCheckBox mValued
The check box for has value.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper extends Filter implements Serializable
-
Serialized Fields
-
mContainer
SubFilterList mContainer
The drop target container. -
mFilter
HasChildFilter mFilter
The underlying filter. -
mRecursive
javax.swing.JCheckBox mRecursive
The check box for recursion.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper extends Filter implements Serializable
-
Serialized Fields
-
mContainer
SubFilterList mContainer
The drop target container. -
mFilter
HasParentFilter mFilter
The underlying filter. -
mRecursive
javax.swing.JCheckBox mRecursive
The check box for recursion.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper extends Filter implements Serializable
-
Serialized Fields
-
mContainer
SubFilterList mContainer
The drop target container. -
mFilter
HasSiblingFilter mFilter
The underlying filter.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper extends Filter implements Serializable
-
Serialized Fields
-
mClass
javax.swing.JComboBox mClass
Combo box for strategy. -
mFilter
NodeClassFilter mFilter
The underlying filter.
-
-
-
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
javax.swing.JTextArea mPattern
Text to check for -
mStrategy
javax.swing.JComboBox mStrategy
Combo box for strategy.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper extends Filter implements Serializable
-
Serialized Fields
-
mCaseSensitivity
javax.swing.JCheckBox mCaseSensitivity
The check box for case sensitivity. -
mFilter
StringFilter mFilter
The underlying filter. -
mLocale
javax.swing.JComboBox mLocale
Combo box for locale. -
mPattern
javax.swing.JTextArea mPattern
Text to check for.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper extends Filter implements Serializable
-
Serialized Fields
-
mFilter
TagNameFilter mFilter
The underlying filter. -
mName
javax.swing.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 java.lang.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
java.lang.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
java.lang.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
-
javascriptLink
boolean javascriptLink
Set to true when the link was a javascript: URL. -
mailLink
boolean mailLink
Set to true when the link was a mailto: URL. -
mLink
java.lang.String mLink
The URL where the link points to
-
-
-
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
java.lang.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 java.lang.Exception implements Serializable
-
Serialized Fields
-
throwable
java.lang.Throwable throwable
-
-
-
Class org.htmlparser.util.CharacterReference extends java.lang.Object implements Serializable
-
Serialized Fields
-
mCharacter
int mCharacter
The character value as an integer. -
mKernel
java.lang.String mKernel
This entity reference kernel. The text between the ampersand and the semicolon.
-
-
-
Class org.htmlparser.util.DefaultParserFeedback extends java.lang.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 java.lang.Object implements Serializable
-
Serialized Fields
-
capacity
int capacity
-
capacityIncrement
int capacityIncrement
-
nodeData
Node[] nodeData
-
size
int size
-
-
-
Class org.htmlparser.util.ParserException extends ChainedException implements Serializable
-