Serialized Form
-
Package org.htmlparser
-
Class org.htmlparser.Attribute
class Attribute extends Object implements Serializable-
Serialized Fields
-
mAssignment
String mAssignment
The assignment string of the attribute. The equals sign. This will benull
if the attribute is a stand-alone attribute. -
mName
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
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
class 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
class PrototypicalNodeFactory extends Object implements Serializable
-
-
Package org.htmlparser.beans
-
Class org.htmlparser.beans.BeanyBaby
class BeanyBaby extends JFrame implements Serializable-
Serialized Fields
-
mBack
JMenuItem mBack
-
mCollapse
JCheckBoxMenuItem mCollapse
-
mCrumb
int mCrumb
Current position on the bread crumb trail. -
mForward
JMenuItem mForward
-
mLinkBean
HTMLLinkBean mLinkBean
-
mLinks
JCheckBoxMenuItem mLinks
-
mNobreak
JCheckBoxMenuItem mNobreak
-
mSplitPane
JSplitPane mSplitPane
-
mStringBean
HTMLTextBean mStringBean
-
mTextField
JTextField mTextField
-
mTrail
Vector mTrail
Bread crumb trail of visited URLs.
-
-
-
Class org.htmlparser.beans.FilterBean
class FilterBean extends 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
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
class HTMLLinkBean extends JList implements Serializable-
Serialized Fields
-
mBean
LinkBean mBean
The underlying bean that provides our htmlparser specific properties.
-
-
-
Class org.htmlparser.beans.HTMLTextBean
class HTMLTextBean extends JTextArea implements Serializable-
Serialized Fields
-
mBean
StringBean mBean
The underlying bean that provides our htmlparser specific properties.
-
-
-
Class org.htmlparser.beans.LinkBean
class LinkBean extends Object implements Serializable-
Serialized Fields
-
mLinks
URL[] mLinks
The strings extracted from the URL. -
mParser
Parser mParser
The parser used to extract strings. -
mPropertySupport
PropertyChangeSupport mPropertySupport
Bound property support.
-
-
-
Class org.htmlparser.beans.StringBean
class StringBean extends NodeVisitor implements Serializable-
Serialized Fields
-
mBuffer
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
PropertyChangeSupport mPropertySupport
Bound property support. -
mReplaceSpace
boolean mReplaceSpace
Iftrue
regular space characters are substituted for non-breaking spaces in the text output. -
mStrings
String mStrings
The strings extracted from the URL.
-
-
-
-
Package org.htmlparser.filters
-
Class org.htmlparser.filters.AndFilter
class AndFilter extends Object implements Serializable-
Serialized Fields
-
mPredicates
NodeFilter[] mPredicates
The predicates that are to be and'ed together;
-
-
-
Class org.htmlparser.filters.CssSelectorNodeFilter
class CssSelectorNodeFilter extends Object implements Serializable-
Serialized Fields
-
m
Matcher m
-
therule
NodeFilter therule
-
token
String token
-
tokentype
int tokentype
-
-
-
Class org.htmlparser.filters.HasAttributeFilter
class HasAttributeFilter extends Object implements Serializable -
Class org.htmlparser.filters.HasChildFilter
class 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 iftrue
.
-
-
-
Class org.htmlparser.filters.HasParentFilter
class 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 iftrue
.
-
-
-
Class org.htmlparser.filters.HasSiblingFilter
class HasSiblingFilter extends Object implements Serializable-
Serialized Fields
-
mSiblingFilter
NodeFilter mSiblingFilter
The filter to apply to the sibling.
-
-
-
Class org.htmlparser.filters.IsEqualFilter
class IsEqualFilter extends Object implements Serializable-
Serialized Fields
-
mNode
Node mNode
The node to match.
-
-
-
Class org.htmlparser.filters.LinkRegexFilter
class LinkRegexFilter extends Object implements Serializable-
Serialized Fields
-
mRegex
Pattern mRegex
The regular expression to use on the link.
-
-
-
Class org.htmlparser.filters.LinkStringFilter
class LinkStringFilter extends Object implements Serializable-
Serialized Fields
-
mCaseSensitive
boolean mCaseSensitive
Flag indicating case sensitive/insensitive search. -
mPattern
String mPattern
The pattern to search for in the link.
-
-
-
Class org.htmlparser.filters.NodeClassFilter
class NodeClassFilter extends Object implements Serializable-
Serialized Fields
-
mClass
Class mClass
The class to match.
-
-
-
Class org.htmlparser.filters.NotFilter
class NotFilter extends Object implements Serializable-
Serialized Fields
-
mPredicate
NodeFilter mPredicate
The filter to gainsay.
-
-
-
Class org.htmlparser.filters.OrFilter
class OrFilter extends Object implements Serializable-
Serialized Fields
-
mPredicates
NodeFilter[] mPredicates
The predicates that are to be or'ed together;
-
-
-
Class org.htmlparser.filters.RegexFilter
class RegexFilter extends Object implements Serializable -
Class org.htmlparser.filters.StringFilter
class StringFilter extends Object implements Serializable-
Serialized Fields
-
mCaseSensitive
boolean mCaseSensitive
Case sensitive toggle. Iftrue
strings are compared with case sensitivity. -
mLocale
Locale mLocale
The locale to use converting to uppercase in case insensitive searches. -
mPattern
String mPattern
The string to search for. -
mUpperPattern
String mUpperPattern
The string to really search for (converted to uppercase if necessary).
-
-
-
Class org.htmlparser.filters.TagNameFilter
class TagNameFilter extends Object implements Serializable-
Serialized Fields
-
mName
String mName
The tag name to match.
-
-
-
Class org.htmlparser.filters.XorFilter
class XorFilter extends 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
class Cookie extends Object implements Serializable-
Serialized Fields
-
mComment
String mComment
Describes the cookie's use. -
mDomain
String mDomain
Domain that sees cookie. -
mExpiry
Date mExpiry
Cookie expires after this date. -
mName
String mName
The name of the cookie. -
mPath
String mPath
URLs that see the cookie. -
mSecure
boolean mSecure
Use SSL. -
mValue
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
class Cursor extends Object implements Serializable-
Serialized Fields
-
mPage
Page mPage
This cursor's page. -
mPosition
int mPosition
This cursor's position.
-
-
-
Class org.htmlparser.lexer.InputStreamSource
class InputStreamSource extends Source implements Serializable-
Serialization Methods
-
readObject
Deserialization support.- Parameters:
in
- Where to read this object from.- Throws:
IOException
- If deserialization has a problem.ClassNotFoundException
-
writeObject
Serialization support.- Parameters:
out
- Where to write this object.- Throws:
IOException
- If serialization has a problem.
-
-
Serialized Fields
-
mBuffer
char[] mBuffer
The characters read so far. -
mEncoding
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
class Lexer extends 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
class Page extends Object implements Serializable-
Serialization Methods
-
readObject
Deserialize the page. For details seewriteObject()
.- Parameters:
in
- The object stream to decode.- 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
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.- Parameters:
out
- The object stream to store this object in.- Throws:
IOException
- If there is a serialization problem.
-
-
Serialized Fields
-
-
Class org.htmlparser.lexer.PageAttribute
class 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
class PageIndex extends 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
class Source extends Reader implements Serializable -
Class org.htmlparser.lexer.StringSource
class StringSource extends Source implements Serializable-
Serialized Fields
-
mEncoding
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
String mString
The source of characters.
-
-
-
-
Package org.htmlparser.lexerapplications.thumbelina
-
Class org.htmlparser.lexerapplications.thumbelina.Picture
class Picture extends Rectangle implements Serializable-
Serialized Fields
-
mImage
Image mImage
The image for the picture. -
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, theRectangle
fieldsx
,y
,width
andheight
will change, but the origin remains the same. -
mURL
URL mURL
The URL for the picture.
-
-
-
Class org.htmlparser.lexerapplications.thumbelina.PicturePanel
class PicturePanel extends JPanel implements Serializable-
Serialized Fields
-
mMosaic
TileSet mMosaic
The display mosaic. -
mPreferredSize
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
class Thumbelina extends JPanel implements Serializable-
Serialized Fields
-
mActive
boolean mActive
Activity state.true
means processing URLS,false
not. -
mBackgroundToggle
JCheckBox mBackgroundToggle
Background thread checkbox in status bar. -
mCurrentURL
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
JList mHistory
History list. -
mHistoryScroller
JScrollPane mHistoryScroller
Scroller for the history list. -
mMainArea
JSplitPane mMainArea
Main panel in central area. -
mPicturePanel
PicturePanel mPicturePanel
The central area for pictures. -
mPicturePanelScroller
JScrollPane mPicturePanelScroller
Scroller for the picture panel. -
mPowerBar
JPanel mPowerBar
Status bar. -
mPropertySupport
PropertyChangeSupport mPropertySupport
Bound property support. -
mQueueProgress
JProgressBar mQueueProgress
Image request queue monitor in status bar. -
mQueueSize
JLabel mQueueSize
URL queue size display in status bar. -
mReadyProgress
JProgressBar mReadyProgress
Image ready queue monitor in status bar. -
mRequested
HashMap mRequested
Images requested. -
mRunToggle
JCheckBox mRunToggle
Sequencer thread toggle in status bar. -
mSequencer
Sequencer mSequencer
The picture sequencer. -
mSpeedSlider
JSlider mSpeedSlider
Sequencer speed slider in status bar. -
mThread
Thread mThread
Background thread. -
mTracked
HashMap mTracked
Images being tracked currently. -
mUrls
ArrayList mUrls
URL's to visit. -
mUrlText
JTextField mUrlText
URL report in status bar. -
mVisited
HashMap mVisited
URL's visited. -
mVisitedSize
JLabel mVisitedSize
URL visited count display in status bar.
-
-
-
Class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
class ThumbelinaFrame extends JFrame implements Serializable-
Serialized Fields
-
mAbout
JMenuItem mAbout
About menu item. -
mClear
JMenuItem mClear
Clear menu item -
mCommand
JMenu mCommand
Vommand menu. -
mExit
JMenuItem mExit
Exit menu item. -
mGoogle
JMenuItem mGoogle
Google menu item. -
mHelp
JMenu mHelp
Help submenu. -
mHistoryVisible
JCheckBoxMenuItem mHistoryVisible
History list visible menu item. -
mMenu
JMenuBar mMenu
Main menu. -
mOpen
JMenuItem mOpen
Open menu item. -
mReset
JMenuItem mReset
Reset menu item. -
mSeparator1
JSeparator mSeparator1
MRU list separator #1. -
mSeparator2
JSeparator mSeparator2
MRU list separator #2. -
mStatusVisible
JCheckBoxMenuItem mStatusVisible
Status bar visible menu item. -
mURL
JMenu mURL
URL submenu. -
mView
JMenu mView
View submenu.
-
-
-
-
Package org.htmlparser.nodes
-
Class org.htmlparser.nodes.AbstractNode
class AbstractNode extends Object implements Serializable -
Class org.htmlparser.nodes.RemarkNode
class RemarkNode extends AbstractNode implements Serializable-
Serialized Fields
-
mText
String mText
The contents of the remark node, or override text.
-
-
-
Class org.htmlparser.nodes.TagNode
class TagNode extends AbstractNode implements Serializable -
Class org.htmlparser.nodes.TextNode
class 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
class Filter extends JComponent implements Serializable -
Class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
class FilterBuilder extends JFrame implements Serializable-
Serialized Fields
-
mBasePoint
Point mBasePoint
The relative position of the mouse while dragging. -
mCurrentComponent
Component mCurrentComponent
Kludge: Used by actionPerformed/filterAction to remember the filter menu item. -
mDragSource
DragSource mDragSource
Enables this component to be a Drag Source. -
mDropTarget
DropTarget mDropTarget
This component is a drop target. -
mMainPanel
JPanel mMainPanel
The main panel GUI component. -
mMainScroller
JScrollPane mMainScroller
The main panel scrolling GUI component. -
mMoved
boolean mMoved
If true selection moved. -
mOutput
JDesktopPane mOutput
The output panel GUI component. -
mSelection
Vector mSelection
Selected commands. -
mURLField
JTextField mURLField
The URL input GUI component.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.HtmlTreeCellRenderer
class HtmlTreeCellRenderer extends DefaultTreeCellRenderer implements Serializable -
Class org.htmlparser.parserapplications.filterbuilder.SubFilterList
class SubFilterList extends JPanel implements Serializable
-
-
Package org.htmlparser.parserapplications.filterbuilder.layouts
-
Class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
class NullLayoutManager extends Object implements Serializable -
Class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
class VerticalLayoutManager extends Object implements Serializable
-
-
Package org.htmlparser.parserapplications.filterbuilder.wrappers
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
class 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
class HasAttributeFilterWrapper extends Filter implements Serializable-
Serialized Fields
-
mAttributeName
JComboBox mAttributeName
Combo box for attribute name. -
mAttributeValue
JTextArea mAttributeValue
Value to check for. -
mFilter
HasAttributeFilter mFilter
The underlying filter. -
mValued
JCheckBox mValued
The check box for has value.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
class HasChildFilterWrapper extends Filter implements Serializable-
Serialized Fields
-
mContainer
SubFilterList mContainer
The drop target container. -
mFilter
HasChildFilter mFilter
The underlying filter. -
mRecursive
JCheckBox mRecursive
The check box for recursion.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
class HasParentFilterWrapper extends Filter implements Serializable-
Serialized Fields
-
mContainer
SubFilterList mContainer
The drop target container. -
mFilter
HasParentFilter mFilter
The underlying filter. -
mRecursive
JCheckBox mRecursive
The check box for recursion.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
class 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
class NodeClassFilterWrapper extends Filter implements Serializable-
Serialized Fields
-
mClass
JComboBox mClass
Combo box for strategy. -
mFilter
NodeClassFilter mFilter
The underlying filter.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
class 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
class 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
class 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
class StringFilterWrapper extends Filter implements Serializable-
Serialized Fields
-
mCaseSensitivity
JCheckBox mCaseSensitivity
The check box for case sensitivity. -
mFilter
StringFilter mFilter
The underlying filter. -
mLocale
JComboBox mLocale
Combo box for locale. -
mPattern
JTextArea mPattern
Text to check for.
-
-
-
Class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
class 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
class CompositeTagScanner extends TagScanner implements Serializable -
Class org.htmlparser.scanners.JspScanner
class JspScanner extends TagScanner implements Serializable -
Class org.htmlparser.scanners.ScriptScanner
class ScriptScanner extends CompositeTagScanner implements Serializable -
Class org.htmlparser.scanners.StyleScanner
class StyleScanner extends CompositeTagScanner implements Serializable -
Class org.htmlparser.scanners.TagScanner
class TagScanner extends Object implements Serializable
-
-
Package org.htmlparser.tags
-
Class org.htmlparser.tags.AppletTag
class AppletTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.BaseHrefTag
class BaseHrefTag extends TagNode implements Serializable -
Class org.htmlparser.tags.BodyTag
class BodyTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.Bullet
class Bullet extends CompositeTag implements Serializable -
Class org.htmlparser.tags.BulletList
class BulletList extends CompositeTag implements Serializable -
Class org.htmlparser.tags.CompositeTag
class 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
class DefinitionList extends CompositeTag implements Serializable -
Class org.htmlparser.tags.DefinitionListBullet
class DefinitionListBullet extends CompositeTag implements Serializable -
Class org.htmlparser.tags.Div
class Div extends CompositeTag implements Serializable -
Class org.htmlparser.tags.DoctypeTag
class DoctypeTag extends TagNode implements Serializable -
Class org.htmlparser.tags.FormTag
class FormTag extends CompositeTag implements Serializable-
Serialized Fields
-
mFormLocation
String mFormLocation
This is the derived form location, based on action.
-
-
-
Class org.htmlparser.tags.FrameSetTag
class FrameSetTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.FrameTag
class FrameTag extends TagNode implements Serializable -
Class org.htmlparser.tags.HeadingTag
class HeadingTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.HeadTag
class HeadTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.Html
class Html extends CompositeTag implements Serializable -
Class org.htmlparser.tags.ImageTag
class 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
class InputTag extends TagNode implements Serializable -
Class org.htmlparser.tags.JspTag
class JspTag extends TagNode implements Serializable -
Class org.htmlparser.tags.LabelTag
class LabelTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.LinkTag
class 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
String mLink
The URL where the link points to
-
-
-
Class org.htmlparser.tags.MetaTag
class MetaTag extends TagNode implements Serializable -
Class org.htmlparser.tags.ObjectTag
class ObjectTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.OptionTag
class OptionTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.ParagraphTag
class ParagraphTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.ProcessingInstructionTag
class ProcessingInstructionTag extends TagNode implements Serializable -
Class org.htmlparser.tags.ScriptTag
class ScriptTag extends CompositeTag implements Serializable-
Serialized Fields
-
mCode
String mCode
Script code if different from the page contents.
-
-
-
Class org.htmlparser.tags.SelectTag
class SelectTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.Span
class Span extends CompositeTag implements Serializable -
Class org.htmlparser.tags.StyleTag
class StyleTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.TableColumn
class TableColumn extends CompositeTag implements Serializable -
Class org.htmlparser.tags.TableHeader
class TableHeader extends CompositeTag implements Serializable -
Class org.htmlparser.tags.TableRow
class TableRow extends CompositeTag implements Serializable -
Class org.htmlparser.tags.TableTag
class TableTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.TextareaTag
class TextareaTag extends CompositeTag implements Serializable -
Class org.htmlparser.tags.TitleTag
class TitleTag extends CompositeTag implements Serializable
-
-
Package org.htmlparser.util
-
Exception Class org.htmlparser.util.ChainedException
class ChainedException extends Exception implements Serializable-
Serialized Fields
-
throwable
Throwable throwable
-
-
-
Class org.htmlparser.util.CharacterReference
class 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
class DefaultParserFeedback extends Object implements Serializable-
Serialized Fields
-
mMode
int mMode
Verbosity level. Corresponds to constructor arguments:DEBUG = 2; NORMAL = 1; QUIET = 0;
-
-
-
Exception Class org.htmlparser.util.EncodingChangeException
class EncodingChangeException extends ParserException implements Serializable -
Class org.htmlparser.util.NodeList
class NodeList extends Object implements Serializable-
Serialized Fields
-
capacity
int capacity
-
capacityIncrement
int capacityIncrement
-
nodeData
Node[] nodeData
-
size
int size
-
-
-
Exception Class org.htmlparser.util.ParserException
class ParserException extends ChainedException implements Serializable
-