- about() - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Display information about Thumbelina.
- aboutAction() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The action to take when "About" menu or button pressed.
- AbstractNode - Class in org.htmlparser.nodes
-
The concrete base class for all types of nodes (tags, text remarks).
- AbstractNode(Page, int, int) - Constructor for class org.htmlparser.nodes.AbstractNode
-
Create an abstract node with the page positions given.
- AbstractNodeDecorator - Class in org.htmlparser.nodeDecorators
-
Deprecated.
Use direct subclasses or dynamic proxies instead.
Use either direct subclasses of the appropriate node and set them on the
PrototypicalNodeFactory
,
or use a dynamic proxy implementing the required node type interface.
In the former case this avoids the wrapping and delegation, while the latter
case handles the wrapping and delegation without this class.
Here is an example of how to use dynamic proxies to accomplish the same
effect as using decorators to wrap Text nodes:
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import org.htmlparser.Parser;
import org.htmlparser.PrototypicalNodeFactory;
import org.htmlparser.Text;
import org.htmlparser.nodes.TextNode;
import org.htmlparser.util.ParserException;
public class TextProxy
implements
InvocationHandler
{
protected Object mObject;
public static Object newInstance (Object object)
{
Class cls;
cls = object.getClass ();
return (Proxy.newProxyInstance (
cls.getClassLoader (),
cls.getInterfaces (),
new TextProxy (object)));
}
private TextProxy (Object object)
{
mObject = object;
}
public Object invoke (Object proxy, Method m, Object[] args)
throws Throwable
{
Object result;
String name;
try
{
result = m.invoke (mObject, args);
name = m.getName ();
if (name.equals ("clone"))
result = newInstance (result); // wrap the cloned object
else if (name.equals ("doSemanticAction")) // or other methods
System.out.println (mObject); // do the needful on the TextNode
}
catch (InvocationTargetException e)
{
throw e.getTargetException ();
}
catch (Exception e)
{
throw new RuntimeException ("unexpected invocation exception: " +
e.getMessage());
}
finally
{
}
return (result);
}
public static void main (String[] args)
throws
ParserException
{
// create the wrapped text node and set it as the prototype
Text text = (Text) TextProxy.newInstance (new TextNode (null, 0, 0));
PrototypicalNodeFactory factory = new PrototypicalNodeFactory ();
factory.setTextPrototype (text);
// perform the parse
Parser parser = new Parser (args[0]);
parser.setNodeFactory (factory);
parser.parse (null);
}
}
- AbstractNodeDecorator(Text) - Constructor for class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- accept(Node) - Method in class org.htmlparser.filters.AndFilter
-
Accept nodes that are acceptable to all of it's predicate filters.
- accept(Node) - Method in class org.htmlparser.filters.CssSelectorNodeFilter
-
Accept nodes that match the selector expression.
- accept(Node) - Method in class org.htmlparser.filters.HasAttributeFilter
-
Accept tags with a certain attribute.
- accept(Node) - Method in class org.htmlparser.filters.HasChildFilter
-
Accept tags with children acceptable to the filter.
- accept(Node) - Method in class org.htmlparser.filters.HasParentFilter
-
Accept tags with parent acceptable to the filter.
- accept(Node) - Method in class org.htmlparser.filters.HasSiblingFilter
-
Accept tags with a sibling acceptable to the filter.
- accept(Node) - Method in class org.htmlparser.filters.IsEqualFilter
-
Accept the node.
- accept(Node) - Method in class org.htmlparser.filters.LinkRegexFilter
-
Accept nodes that are a LinkTag and have a URL
that matches the regex pattern supplied in the constructor.
- accept(Node) - Method in class org.htmlparser.filters.LinkStringFilter
-
Accept nodes that are a LinkTag and
have a URL that matches the pattern supplied in the constructor.
- accept(Node) - Method in class org.htmlparser.filters.NodeClassFilter
-
Accept nodes that are assignable from the class provided in
the constructor.
- accept(Node) - Method in class org.htmlparser.filters.NotFilter
-
Accept nodes that are not acceptable to the predicate filter.
- accept(Node) - Method in class org.htmlparser.filters.OrFilter
-
Accept nodes that are acceptable to any of it's predicate filters.
- accept(Node) - Method in class org.htmlparser.filters.RegexFilter
-
Accept string nodes that match the regular expression.
- accept(Node) - Method in class org.htmlparser.filters.StringFilter
-
Accept string nodes that contain the string.
- accept(Node) - Method in class org.htmlparser.filters.TagNameFilter
-
Accept nodes that are tags and have a matching tag name.
- accept(NodeVisitor) - Method in interface org.htmlparser.Node
-
Apply the visitor to this node.
- accept(NodeVisitor) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- accept(Node) - Method in interface org.htmlparser.NodeFilter
-
Predicate to determine whether or not to keep the given node.
- accept(NodeVisitor) - Method in class org.htmlparser.nodes.AbstractNode
-
Visit this node.
- accept(NodeVisitor) - Method in class org.htmlparser.nodes.RemarkNode
-
Remark visiting code.
- accept(NodeVisitor) - Method in class org.htmlparser.nodes.TagNode
-
Default tag visiting code.
- accept(NodeVisitor) - Method in class org.htmlparser.nodes.TextNode
-
String visiting code.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Predicate to determine whether or not to keep the given node.
- accept(NodeVisitor) - Method in class org.htmlparser.tags.CompositeTag
-
Tag visiting code.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.beans.BeanyBaby
-
Handles UI events.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Handles events from the menu.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Handles menu and toolbar item choices.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Invoked when an action occurs on the combo box.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Invoked when an action occurs on the check box.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Invoked when an action occurs on the check box.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Invoked when an action occurs.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Invoked when an action occurs on the combo box.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Invoked when an action occurs on the combo box.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Invoked when an action occurs on the combo box.
- actionPerformed(ActionEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Invoked when an action occurs on the combo box.
- add(Cursor) - Method in class org.htmlparser.lexer.PageIndex
-
Add an element to the list
- add(int) - Method in class org.htmlparser.lexer.PageIndex
-
Add an element to the list
- add(Image, URL) - Method in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Add an image to the pending list.
- add(Image, URL, boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Add an image to the panel.
- add(Picture) - Method in class org.htmlparser.lexerapplications.thumbelina.TileSet
-
Add a single picture to the list.
- add(Node) - Method in class org.htmlparser.util.NodeList
-
- add(NodeList) - Method in class org.htmlparser.util.NodeList
-
Add another node list to this one.
- addAttributes(Set, Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Add the attribute names from the node to the set of attribute names.
- addAttributeValues(Set, Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Add the attribute values from the node to the set of attribute values.
- addChild(Tag, Node) - Method in class org.htmlparser.scanners.CompositeTagScanner
-
Add a child to the given tag.
- addCookies(URLConnection) - Method in class org.htmlparser.http.ConnectionManager
-
Generate a HTTP cookie header value string from the cookie jar.
- addCookies(Vector, String, Vector) - Method in class org.htmlparser.http.ConnectionManager
-
Add qualified cookies from cookies into list.
- addFilter(JMenu, JToolBar, String) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Add a filter to the GUI.
- addFilter(Filter) - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Add a filter to the container contents.
- addFilter(Filter, int) - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Add a filter to the container at a specific position.
- addHistory(String) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Adds the given url to the history list.
- addLayoutComponent(String, Component) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
-
Adds the specified component with the specified name to
the layout.
- addLayoutComponent(Component, Object) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
-
Adds the specified component to the layout, using the specified
constraint object.
- addLayoutComponent(String, Component) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
-
Adds the specified component with the specified name to
the layout.
- addLayoutComponent(Component, Object) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
-
Adds the specified component to the layout, using the specified
constraint object.
- addName(Set, Node) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Add the tag name and it's children's tag names to the set of tag names.
- addPropertyChangeListener(PropertyChangeListener) - Method in class org.htmlparser.beans.FilterBean
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(PropertyChangeListener) - Method in class org.htmlparser.beans.HTMLLinkBean
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(PropertyChangeListener) - Method in class org.htmlparser.beans.HTMLTextBean
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(PropertyChangeListener) - Method in class org.htmlparser.beans.LinkBean
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(PropertyChangeListener) - Method in class org.htmlparser.beans.StringBean
-
Add a PropertyChangeListener to the listener list.
- addPropertyChangeListener(PropertyChangeListener) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Add a PropertyChangeListener to the listener list.
- addSelection(Filter) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Add a filter to the current selection set.
- addSpacer() - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Stuff a spacer component at the end of the list.
- addTreeModelListener(TreeModelListener) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
Adds a listener for the TreeModelEvent posted after the tree changes.
- adjustClipForInsets(Graphics) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Adjust the graphics clip region to account for insets.
- advance() - Method in class org.htmlparser.lexer.Cursor
-
Move the cursor position ahead one character.
- AndFilter - Class in org.htmlparser.filters
-
Accepts nodes matching all of it's predicate filters (AND operation).
- AndFilter() - Constructor for class org.htmlparser.filters.AndFilter
-
Creates a new instance of an AndFilter.
- AndFilter(NodeFilter, NodeFilter) - Constructor for class org.htmlparser.filters.AndFilter
-
Creates an AndFilter that accepts nodes acceptable to both filters.
- AndFilterWrapper - Class in org.htmlparser.parserapplications.filterbuilder.wrappers
-
Wrapper for AndFilters.
- AndFilterWrapper() - Constructor for class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Create a wrapper over a new AndFilter.
- append(URL) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Append the given URL to the queue.
- append(ArrayList) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Append the given URLs to the queue.
- AppletTag - Class in org.htmlparser.tags
-
AppletTag represents an <Applet> tag.
- AppletTag() - Constructor for class org.htmlparser.tags.AppletTag
-
Create a new applet tag.
- applyFilters() - Method in class org.htmlparser.beans.FilterBean
-
Apply each of the filters.
- asHtml() - Method in class org.htmlparser.util.NodeList
-
- asString() - Method in class org.htmlparser.util.NodeList
-
- Attribute - Class in org.htmlparser
-
An attribute within a tag.
- Attribute(String, String, String, char) - Constructor for class org.htmlparser.Attribute
-
Create an attribute with the name, assignment, value and quote given.
- Attribute(String, String, char) - Constructor for class org.htmlparser.Attribute
-
Create an attribute with the name, value and quote given.
- Attribute(String) - Constructor for class org.htmlparser.Attribute
-
Create a whitespace attribute with the value given.
- Attribute(String, String) - Constructor for class org.htmlparser.Attribute
-
Create an attribute with the name and value given.
- Attribute(String, String, String) - Constructor for class org.htmlparser.Attribute
-
Create an attribute with the name, assignment string and value given.
- Attribute() - Constructor for class org.htmlparser.Attribute
-
Create an empty attribute.
- Attributes - Class in org.htmlparser.sax
-
Provides access to the tag attributes.
- Attributes(Tag, NamespaceSupport, String[]) - Constructor for class org.htmlparser.sax.Attributes
-
Create an attibute access object.
- available() - Method in class org.htmlparser.lexer.InputStreamSource
-
Get the number of available characters.
- available() - Method in class org.htmlparser.lexer.Source
-
Get the number of available characters.
- available() - Method in class org.htmlparser.lexer.Stream
-
Returns the number of bytes that can be read (or skipped over) from
this input stream without blocking by the next caller of a method for
this input stream.
- available() - Method in class org.htmlparser.lexer.StringSource
-
Get the number of available characters.
- generateCookieProperty(Vector) - Method in class org.htmlparser.http.ConnectionManager
-
Creates the cookie request property value from the list of
valid cookies for the domain.
- get() - Method in class org.htmlparser.lexer.PageIndex
-
Get the elements as an array of int.
- get(String) - Method in class org.htmlparser.PrototypicalNodeFactory
-
Gets a tag from the registry.
- GET - Static variable in class org.htmlparser.tags.FormTag
-
The "GET" method.
- get(Object) - Method in class org.htmlparser.util.SpecialHashtable
-
Returns the value to which the specified key is mapped in this hashtable.
- getAbsoluteURL(String) - Method in class org.htmlparser.lexer.Page
-
Create an absolute URL from a relative link.
- getAccessKey() - Method in class org.htmlparser.tags.LinkTag
-
Get the ACCESSKEY
attribute, if any.
- getAppletClass() - Method in class org.htmlparser.tags.AppletTag
-
Get the class name of the applet.
- getAppletParams() - Method in class org.htmlparser.tags.AppletTag
-
Get the applet parameters.
- getArchive() - Method in class org.htmlparser.tags.AppletTag
-
Get the jar file of the applet.
- getAssignment() - Method in class org.htmlparser.Attribute
-
Get the assignment string of this attribute.
- getAssignment(StringBuffer) - Method in class org.htmlparser.Attribute
-
Get the assignment string of this attribute.
- getAssignment() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the assignment string of this attribute.
- getAssignment(StringBuffer) - Method in class org.htmlparser.lexer.PageAttribute
-
Get the assignment string of this attribute.
- getAttribute(String) - Method in class org.htmlparser.nodes.TagNode
-
Returns the value of an attribute.
- getAttribute(String) - Method in interface org.htmlparser.Tag
-
Returns the value of an attribute.
- getAttributeEx(String) - Method in class org.htmlparser.nodes.TagNode
-
Returns the attribute with the given name.
- getAttributeEx(String) - Method in interface org.htmlparser.Tag
-
Returns the attribute with the given name.
- getAttributeName() - Method in class org.htmlparser.filters.HasAttributeFilter
-
Get the attribute name.
- getAttributes() - Method in class org.htmlparser.nodes.TagNode
-
Gets the attributes in the tag.
- getAttributes() - Method in interface org.htmlparser.Tag
-
Deprecated.
Use getAttributesEx() instead.
- getAttributesEx() - Method in class org.htmlparser.nodes.TagNode
-
Gets the attributes in the tag.
- getAttributesEx() - Method in interface org.htmlparser.Tag
-
Gets the attributes in the tag.
- getAttributeValue() - Method in class org.htmlparser.filters.HasAttributeFilter
-
Get the attribute value.
- getBackgroundThreadActive() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Gets the state of the background thread.
- getBasePoint() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Gets the current base point of the mouse pointer.
- getBaseUrl() - Method in class org.htmlparser.lexer.Page
-
Gets the baseUrl.
- getBaseUrl() - Method in class org.htmlparser.tags.BaseHrefTag
-
Get the value of the HREF
attribute, if any.
- getBaseUrl() - Method in class org.htmlparser.util.LinkProcessor
-
Deprecated.
Returns the baseUrl.
- getBean() - Method in class org.htmlparser.beans.HTMLLinkBean
-
Return the underlying bean object.
- getBean() - Method in class org.htmlparser.beans.HTMLTextBean
-
Return the underlying bean object.
- getBody() - Method in class org.htmlparser.tags.BodyTag
-
Returns the textual contents of this BODY
tag.
- getBody() - Method in class org.htmlparser.visitors.HtmlPage
-
- getCaptureResources() - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Getter for property captureResources.
- getCaseSensitive() - Method in class org.htmlparser.filters.StringFilter
-
Get the case sensitivity.
- getCharacter(int) - Method in class org.htmlparser.lexer.InputStreamSource
-
Retrieve a character again.
- getCharacter(Cursor) - Method in class org.htmlparser.lexer.Page
-
Read the character at the given cursor position.
- getCharacter(int) - Method in class org.htmlparser.lexer.Source
-
Retrieve a character again.
- getCharacter(int) - Method in class org.htmlparser.lexer.StringSource
-
Retrieve a character again.
- getCharacter() - Method in class org.htmlparser.util.CharacterReference
-
Get the character needing translation.
- getCharacters(char[], int, int, int) - Method in class org.htmlparser.lexer.InputStreamSource
-
Retrieve characters again.
- getCharacters(StringBuffer, int, int) - Method in class org.htmlparser.lexer.InputStreamSource
-
Append characters already read into a StringBuffer
.
- getCharacters(char[], int, int, int) - Method in class org.htmlparser.lexer.Source
-
Retrieve characters again.
- getCharacters(StringBuffer, int, int) - Method in class org.htmlparser.lexer.Source
-
Append characters already read into a StringBuffer
.
- getCharacters(char[], int, int, int) - Method in class org.htmlparser.lexer.StringSource
-
Retrieve characters again.
- getCharacters(StringBuffer, int, int) - Method in class org.htmlparser.lexer.StringSource
-
Append characters already read into a StringBuffer
.
- getCharset(String) - Static method in class org.htmlparser.lexer.Page
-
Get a CharacterSet name corresponding to a charset parameter.
- getChild(Object, int) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
Returns the child of parent at index index in the parent's child array.
- getChild(int) - Method in class org.htmlparser.tags.CompositeTag
-
Get the child of this node at the given position.
- getChildCount(Object) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
Returns the number of children of parent.
- getChildCount() - Method in class org.htmlparser.tags.CompositeTag
-
Return the number of child nodes in this tag.
- getChildFilter() - Method in class org.htmlparser.filters.HasChildFilter
-
Get the filter used by this HasParentFilter.
- getChildren() - Method in interface org.htmlparser.Node
-
Get the children of this node.
- getChildren() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Get the children of this node.
- getChildren() - Method in class org.htmlparser.nodes.AbstractNode
-
Get the children of this node.
- getChildrenAsNodeArray() - Method in class org.htmlparser.tags.CompositeTag
-
Get the children as an array of Node
objects.
- getChildrenHTML() - Method in class org.htmlparser.tags.CompositeTag
-
Return the HTML code for the children of this tag.
- getCodeBase() - Method in class org.htmlparser.tags.AppletTag
-
Get the code base of the applet.
- getCollapse() - Method in class org.htmlparser.beans.HTMLTextBean
-
Get the current 'collapse whitespace' state.
- getCollapse() - Method in class org.htmlparser.beans.StringBean
-
Get the current 'collapse whitespace' state.
- getColumnCount() - Method in class org.htmlparser.tags.TableRow
-
Get the number of columns in this row.
- getColumnNumber() - Method in class org.htmlparser.sax.Locator
-
Return the column number where the current document event ends.
- getColumns() - Method in class org.htmlparser.tags.TableRow
-
Get the column tags within this TR
(table row) tag.
- getComment() - Method in class org.htmlparser.http.Cookie
-
Returns the comment describing the purpose of this cookie, or null if no
such comment has been defined.
- getConnection() - Method in class org.htmlparser.beans.FilterBean
-
Get the current connection.
- getConnection() - Method in class org.htmlparser.beans.HTMLLinkBean
-
Getter for property Connection.
- getConnection() - Method in class org.htmlparser.beans.HTMLTextBean
-
Getter for property Connection.
- getConnection() - Method in class org.htmlparser.beans.LinkBean
-
Getter for property Connection.
- getConnection() - Method in class org.htmlparser.beans.StringBean
-
Get the current connection.
- getConnection() - Method in class org.htmlparser.lexer.Page
-
Get the connection, if any.
- getConnection() - Method in class org.htmlparser.Parser
-
Return the current connection.
- getConnectionManager() - Static method in class org.htmlparser.lexer.Page
-
Get the connection manager all Parsers use.
- getConnectionManager() - Static method in class org.htmlparser.Parser
-
Get the connection manager all Parsers use.
- getContentHandler() - Method in class org.htmlparser.sax.XMLReader
-
Return the current content handler.
- getContentType() - Method in class org.htmlparser.lexer.Page
-
Try and extract the content type from the HTTP header.
- getConvertNonBreakingSpaces() - Method in class org.htmlparser.StringNodeFactory
-
Deprecated.
Get the non-breaking space replacing state.
- getCookieProcessingEnabled() - Method in class org.htmlparser.http.ConnectionManager
-
Predicate to determine if cookie processing is currently enabled.
- getCount() - Method in class org.htmlparser.visitors.LinkFindingVisitor
-
- getCount() - Method in class org.htmlparser.visitors.ObjectFindingVisitor
-
- getCurrentLine() - Method in class org.htmlparser.lexer.Lexer
-
Get the current line.
- getCurrentLineNumber() - Method in class org.htmlparser.lexer.Lexer
-
Get the current line number.
- getCurrentURL() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Return the URL currently being examined.
- getCursor() - Method in class org.htmlparser.lexer.Lexer
-
Get the current scanning position.
- getDecode() - Method in class org.htmlparser.StringNodeFactory
-
Deprecated.
Get the decoding state.
- getDefaultRequestProperties() - Static method in class org.htmlparser.http.ConnectionManager
-
Get the current default request header properties.
- getDelay() - Method in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Getter for property delay.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Get the name of the filter.
- getDescription() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Get the name of the filter.
- getDomain(String) - Method in class org.htmlparser.http.ConnectionManager
-
Get the domain from a host.
- getDomain() - Method in class org.htmlparser.http.Cookie
-
Returns the domain of this cookie.
- getDropTargets() - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Get the components in which to drop commands.
- getDTDHandler() - Method in class org.htmlparser.sax.XMLReader
-
Return the current DTD handler.
- getEnclosed(Component) - Static method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Get the enclosed sub filter list if any.
- getEnclosed(Component) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Get the enclosed sub filter list if any.
- getEnclosing(Component) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Get the enclosing sub filter list if any.
- getEncoding() - Method in class org.htmlparser.lexer.InputStreamSource
-
Get the encoding being used to convert characters.
- getEncoding() - Method in class org.htmlparser.lexer.Page
-
Get the current encoding being used.
- getEncoding() - Method in class org.htmlparser.lexer.Source
-
Get the encoding being used to convert characters.
- getEncoding() - Method in class org.htmlparser.lexer.StringSource
-
Get the encoding being used to convert characters.
- getEncoding() - Method in class org.htmlparser.Parser
-
Get the encoding for the page this parser is reading from.
- getEnders() - Method in class org.htmlparser.nodes.TagNode
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in interface org.htmlparser.Tag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.BodyTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.Bullet
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.FormTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.HeadTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.LabelTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.LinkTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.OptionTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.SelectTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.TableColumn
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.TableHeader
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.TableRow
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.TextareaTag
-
Return the set of tag names that cause this tag to finish.
- getEnders() - Method in class org.htmlparser.tags.TitleTag
-
Return the set of tag names that cause this tag to finish.
- getEndingLineNumber() - Method in class org.htmlparser.nodes.TagNode
-
Get the line number where this tag ends.
- getEndingLineNumber() - Method in interface org.htmlparser.Tag
-
Get the line number where this tag ends.
- getEndPosition() - Method in interface org.htmlparser.Node
-
Gets the ending position of the node.
- getEndPosition() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Gets the ending position of the node.
- getEndPosition() - Method in class org.htmlparser.nodes.AbstractNode
-
Gets the ending position of the node.
- getEndTag() - Method in class org.htmlparser.nodes.TagNode
-
Get the end tag for this (composite) tag.
- getEndTag() - Method in interface org.htmlparser.Tag
-
Get the end tag for this (composite) tag.
- getEndTag() - Method in class org.htmlparser.tags.CompositeTag
-
Get the end tag for this tag.
- getEndTagCount(int) - Method in class org.htmlparser.visitors.TagFindingVisitor
-
- getEndTagEnders() - Method in class org.htmlparser.nodes.TagNode
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in interface org.htmlparser.Tag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.AppletTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.BodyTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.Bullet
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.BulletList
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.Div
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.FormTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.FrameSetTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.HeadTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.LinkTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.ObjectTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.OptionTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.ScriptTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.SelectTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.StyleTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.TableColumn
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.TableHeader
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.TableRow
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.TableTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.TextareaTag
-
Return the set of end tag names that cause this tag to finish.
- getEndTagEnders() - Method in class org.htmlparser.tags.TitleTag
-
Return the set of end tag names that cause this tag to finish.
- getEntityResolver() - Method in class org.htmlparser.sax.XMLReader
-
Return the current entity resolver.
- getErrorHandler() - Method in class org.htmlparser.sax.XMLReader
-
Return the current error handler.
- getExpiryDate() - Method in class org.htmlparser.http.Cookie
-
Returns the expiry date of the cookie.
- getExtractedText() - Method in class org.htmlparser.visitors.TextExtractingVisitor
-
- getFeature(String) - Method in class org.htmlparser.sax.XMLReader
-
Look up the value of a feature flag.
- getFeedback() - Method in class org.htmlparser.Parser
-
Returns the current feedback object.
- getFilter() - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Getter for property filter.
- getFilters() - Method in class org.htmlparser.beans.FilterBean
-
Get the current filter set.
- getFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Retrieve the top level filters in the main window.
- getFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Return the list of filters in this container.
- getFormInputs() - Method in class org.htmlparser.tags.FormTag
-
Get the list of input fields.
- getFormLocation() - Method in class org.htmlparser.tags.FormTag
-
Get the value of the action attribute.
- getFormMethod() - Method in class org.htmlparser.tags.FormTag
-
Returns the method of the form, GET or POST.
- getFormName() - Method in class org.htmlparser.tags.FormTag
-
Get the value of the name attribute.
- getFormTextareas() - Method in class org.htmlparser.tags.FormTag
-
Get the list of text areas.
- getFrame(String) - Method in class org.htmlparser.tags.FrameSetTag
-
Gets a frame by name.
- getFrame(String, Locale) - Method in class org.htmlparser.tags.FrameSetTag
-
Gets a frame by name.
- getFrameLocation() - Method in class org.htmlparser.tags.FrameTag
-
Returns the location of the frame.
- getFrameName() - Method in class org.htmlparser.tags.FrameTag
-
Get the NAME
attribute, if any.
- getFrames() - Method in class org.htmlparser.tags.FrameSetTag
-
Returns the frames.
- getHeaderCount() - Method in class org.htmlparser.tags.TableRow
-
Get the number of headers in this row.
- getHeaders() - Method in class org.htmlparser.tags.TableRow
-
Get the header of this table
- getHistoryListVisible() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Gets the state of history list visibility.
- getHttpEquiv() - Method in class org.htmlparser.tags.MetaTag
-
Get the HTTP-EQUIV
attribute, if any.
- getIcon() - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Get the icon for the filter.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Get the resource name for the icon.
- getIconSpec() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Get the resource name for the icon.
- getIds() - Method in class org.htmlparser.nodes.TagNode
-
Return the set of names handled by this tag.
- getIds() - Method in interface org.htmlparser.Tag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.AppletTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.BaseHrefTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.BodyTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.Bullet
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.BulletList
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.Div
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.DoctypeTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.FormTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.FrameSetTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.FrameTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.HeadTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.Html
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.ImageTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.InputTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.JspTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.LabelTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.LinkTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.MetaTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.ObjectTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.OptionTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.ScriptTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.SelectTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.Span
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.StyleTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.TableColumn
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.TableHeader
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.TableRow
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.TableTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.TextareaTag
-
Return the set of names handled by this tag.
- getIds() - Method in class org.htmlparser.tags.TitleTag
-
Return the set of names handled by this tag.
- getImage() - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Getter for property image.
- getImageLinks(URL) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Get the image links from the current URL.
- getImageURL() - Method in class org.htmlparser.tags.ImageTag
-
Returns the location of the image.
- getIndex(String, String) - Method in class org.htmlparser.sax.Attributes
-
Look up the index of an attribute by Namespace name.
- getIndex(String) - Method in class org.htmlparser.sax.Attributes
-
Look up the index of an attribute by XML qualified (prefixed) name.
- getIndexOfChild(Object, Object) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
Returns the index of child in parent.
- getInputTag(String) - Method in class org.htmlparser.tags.FormTag
-
Get the input tag in the form corresponding to the given name
- getKernel() - Method in class org.htmlparser.util.CharacterReference
-
Get this CharacterReference's kernel.
- getLabel() - Method in class org.htmlparser.tags.LabelTag
-
Returns the text contained inside this label tag.
- getLanguage() - Method in class org.htmlparser.tags.ScriptTag
-
Get the LANGUAGE
attribute, if any.
- getLayoutAlignmentX(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
-
Returns the alignment along the x axis.
- getLayoutAlignmentX(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
-
Returns the alignment along the x axis.
- getLayoutAlignmentY(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
-
Returns the alignment along the y axis.
- getLayoutAlignmentY(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
-
Returns the alignment along the y axis.
- getLength() - Method in class org.htmlparser.Attribute
-
Get the length of the string value of this attribute.
- getLength() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the length of the string value of this attribute.
- getLength() - Method in class org.htmlparser.sax.Attributes
-
Return the number of attributes in the list.
- getLexer() - Method in class org.htmlparser.Parser
-
Returns the lexer associated with the parser
- getLine(Cursor) - Method in class org.htmlparser.lexer.Page
-
Get the text line the position of the cursor lies on.
- getLine(int) - Method in class org.htmlparser.lexer.Page
-
Get the text line the position of the cursor lies on.
- getLineNumber() - Method in class org.htmlparser.sax.Locator
-
Return the line number where the current document event ends.
- getLink() - Method in class org.htmlparser.tags.LinkTag
-
Returns the url as a string, to which this link points.
- getLinks() - Method in class org.htmlparser.beans.HTMLLinkBean
-
Getter for property links.
- getLinks() - Method in class org.htmlparser.beans.HTMLTextBean
-
Getter for property links.
- getLinks() - Method in class org.htmlparser.beans.LinkBean
-
Getter for property links.
- getLinks() - Method in class org.htmlparser.beans.StringBean
-
Get the current 'include links' state.
- getLinkText() - Method in class org.htmlparser.tags.LinkTag
-
Returns the text contained inside this link tag.
- getLocale() - Method in class org.htmlparser.filters.StringFilter
-
Get the locale for uppercase conversion.
- getLocalName(int) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's local name by index.
- getMatchClass() - Method in class org.htmlparser.filters.NodeClassFilter
-
Get the class to match.
- getMessageChain() - Method in exception org.htmlparser.util.ChainedException
-
- getMessageList() - Method in exception org.htmlparser.util.ChainedException
-
- getMetaContent() - Method in class org.htmlparser.tags.MetaTag
-
Get the CONTENT
attribute, if any.
- getMetaTagName() - Method in class org.htmlparser.tags.MetaTag
-
Get the NAME
attribute, if any.
- getMinimumSize() - Method in class org.htmlparser.beans.HTMLLinkBean
-
Return the minimum dimension for this visible bean.
- getMinimumSize() - Method in class org.htmlparser.beans.HTMLTextBean
-
Return the minimum dimension for this visible bean.
- getModifiedResult() - Method in class org.htmlparser.visitors.UrlModifyingVisitor
-
- getMonitor() - Method in class org.htmlparser.http.ConnectionManager
-
Get the monitoring object, if any.
- getName() - Method in class org.htmlparser.Attribute
-
Get the name of this attribute.
- getName(StringBuffer) - Method in class org.htmlparser.Attribute
-
Get the name of this attribute.
- getName() - Method in class org.htmlparser.filters.TagNameFilter
-
Get the tag name.
- getName() - Method in class org.htmlparser.http.Cookie
-
Returns the name of the cookie.
- getName() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the name of this attribute.
- getName(StringBuffer) - Method in class org.htmlparser.lexer.PageAttribute
-
Get the name of this attribute.
- getNameEndPosition() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the ending position of the attribute name.
- getNameStartPosition() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the starting position of the attribute name.
- getNodeFactory() - Method in class org.htmlparser.lexer.Lexer
-
Get the current node factory.
- getNodeFactory() - Method in class org.htmlparser.Parser
-
Get the current node factory.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Get the underlying node filter object.
- getNodeFilter() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Get the underlying node filter object.
- getNodes() - Method in class org.htmlparser.beans.FilterBean
-
Return the nodes of the URL matching the filter.
- getNumberOfAdjustments() - Method in class org.htmlparser.util.NodeList
-
- getObjectClassId() - Method in class org.htmlparser.tags.ObjectTag
-
Get the classid of the object.
- getObjectCodeBase() - Method in class org.htmlparser.tags.ObjectTag
-
Get the codebase of the object.
- getObjectCodeType() - Method in class org.htmlparser.tags.ObjectTag
-
Get the codetype of the object.
- getObjectData() - Method in class org.htmlparser.tags.ObjectTag
-
Get the data of the object.
- getObjectHeight() - Method in class org.htmlparser.tags.ObjectTag
-
Get the height of the object.
- getObjectParams() - Method in class org.htmlparser.tags.ObjectTag
-
Get the object parameters.
- getObjectStandby() - Method in class org.htmlparser.tags.ObjectTag
-
Get the standby of the object.
- getObjectType() - Method in class org.htmlparser.tags.ObjectTag
-
Get the type of the object.
- getObjectWidth() - Method in class org.htmlparser.tags.ObjectTag
-
Get the width of the object.
- getOptionTags() - Method in class org.htmlparser.tags.SelectTag
-
Get the list of options in this SELECT
tag.
- getOptionText() - Method in class org.htmlparser.tags.OptionTag
-
Get the text of this option.
- getOrigin() - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Getter for property origin.
- getPage() - Method in class org.htmlparser.lexer.Cursor
-
Get this cursor's page.
- getPage() - Method in class org.htmlparser.lexer.Lexer
-
Get the page this lexer is working on.
- getPage() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the page this attribute is anchored to, if any.
- getPage() - Method in class org.htmlparser.lexer.PageIndex
-
Get this index's page.
- getPage() - Method in interface org.htmlparser.Node
-
Get the page this node came from.
- getPage() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Get the page this node came from.
- getPage() - Method in class org.htmlparser.nodes.AbstractNode
-
Get the page this node came from.
- getParameter(String) - Method in class org.htmlparser.tags.AppletTag
-
Get the PARAM tag with the given name.
- getParameter(String) - Method in class org.htmlparser.tags.ObjectTag
-
Get the PARAM tag with the given name.
- getParameterNames() - Method in class org.htmlparser.tags.AppletTag
-
Get an enumeration over the (String) parameter names.
- getParameterNames() - Method in class org.htmlparser.tags.ObjectTag
-
Get an enumeration over the (String) parameter names.
- getParent() - Method in interface org.htmlparser.Node
-
Get the parent of this node.
- getParent() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- getParent() - Method in class org.htmlparser.nodes.AbstractNode
-
Get the parent of this node.
- getParentFilter() - Method in class org.htmlparser.filters.HasParentFilter
-
Get the filter used by this HasParentFilter.
- getParsed() - Method in class org.htmlparser.nodes.TagNode
-
Deprecated.
This method is deprecated. Use getAttributes() instead.
- getParser() - Method in class org.htmlparser.beans.FilterBean
-
Get the parser used to fetch nodes.
- getPassword() - Method in class org.htmlparser.http.ConnectionManager
-
Get the URL users's password.
- getPath() - Method in class org.htmlparser.http.Cookie
-
Returns the prefix of all URLs for which this cookie is targetted.
- getPattern() - Method in class org.htmlparser.filters.RegexFilter
-
Get the search pattern.
- getPattern() - Method in class org.htmlparser.filters.StringFilter
-
Get the search pattern.
- getPicturePanel() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Get the picture panel object encapsulated by this Thumbelina.
- getPictures() - Method in class org.htmlparser.lexerapplications.thumbelina.TileSet
-
Get the list of pictures.
- getPosition() - Method in class org.htmlparser.lexer.Cursor
-
Get the position of this cursor.
- getPosition() - Method in class org.htmlparser.lexer.Lexer
-
Get the current cursor position.
- getPredicate() - Method in class org.htmlparser.filters.NotFilter
-
Get the predicate used by this NotFilter.
- getPredicates() - Method in class org.htmlparser.filters.AndFilter
-
Get the predicates used by this AndFilter.
- getPredicates() - Method in class org.htmlparser.filters.OrFilter
-
Get the predicates used by this OrFilter.
- getPreferredScrollableViewportSize() - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Returns the preferred size of the viewport for a view component.
- getPreferredSize() - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Get the preferred size of the component.
- getProperty(String) - Method in class org.htmlparser.sax.XMLReader
-
Look up the value of a property.
- getProxyHost() - Method in class org.htmlparser.http.ConnectionManager
-
Get the proxy host name, if any.
- getProxyPassword() - Method in class org.htmlparser.http.ConnectionManager
-
Set the proxy user's password.
- getProxyPort() - Method in class org.htmlparser.http.ConnectionManager
-
Get the proxy port number.
- getProxyUser() - Method in class org.htmlparser.http.ConnectionManager
-
Get the user name for proxy authorization, if any.
- getPublicId() - Method in class org.htmlparser.sax.Locator
-
Return the public identifier for the current document event.
- getQName(int) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's XML qualified (prefixed) name by index.
- getQueue() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Getter for property queue.
- getQueueSize() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Getter for property queue.
- getQuote() - Method in class org.htmlparser.Attribute
-
Get the quote, if any, surrounding the value of the attribute, if any.
- getQuote(StringBuffer) - Method in class org.htmlparser.Attribute
-
Get the quote, if any, surrounding the value of the attribute, if any.
- getRaw(Object) - Method in class org.htmlparser.util.SpecialHashtable
-
Returns the raw (untranslated) value to which the specified key is
mapped in this hashtable.
- getRawTagName() - Method in class org.htmlparser.nodes.TagNode
-
Return the name of this tag.
- getRawTagName() - Method in interface org.htmlparser.Tag
-
Return the name of this tag.
- getRawValue() - Method in class org.htmlparser.Attribute
-
Get the raw value of the attribute.
- getRawValue(StringBuffer) - Method in class org.htmlparser.Attribute
-
Get the raw value of the attribute.
- getRawValue() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the raw value of the attribute.
- getRawValue(StringBuffer) - Method in class org.htmlparser.lexer.PageAttribute
-
Get the raw value of the attribute.
- getRecursive() - Method in class org.htmlparser.filters.HasChildFilter
-
Get the recusion setting for the filter.
- getRecursive() - Method in class org.htmlparser.filters.HasParentFilter
-
Get the recusion setting for the filter.
- getRemarkPrototype() - Method in class org.htmlparser.PrototypicalNodeFactory
-
Get the object that is cloned to generate remark nodes.
- getRemoveEscapes() - Method in class org.htmlparser.StringNodeFactory
-
Deprecated.
Get the escape removing state.
- getReplaceNonBreakingSpaces() - Method in class org.htmlparser.beans.HTMLTextBean
-
Get the current 'replace non breaking spaces' state.
- getReplaceNonBreakingSpaces() - Method in class org.htmlparser.beans.StringBean
-
Get the current 'replace non breaking spaces' state.
- getRequestHeader(HttpURLConnection) - Static method in class org.htmlparser.http.ConnectionManager
-
Gets the request header for the connection.
- getRequestProperties() - Method in class org.htmlparser.http.ConnectionManager
-
Get the current request header properties.
- getResponseHeader(HttpURLConnection) - Static method in class org.htmlparser.http.ConnectionManager
-
Gets the response header for the connection.
- getRoot() - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
Returns the root of the tree.
- getRow(int) - Method in class org.htmlparser.tags.TableTag
-
Get the row at the given index.
- getRowCount() - Method in class org.htmlparser.tags.TableTag
-
Get the number of rows in this table.
- getRows() - Method in class org.htmlparser.tags.TableTag
-
Get the row tags within this table.
- getScriptCode() - Method in class org.htmlparser.tags.ScriptTag
-
Get the script code.
- getScrollableBlockIncrement(Rectangle, int, int) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Components that display logical rows or columns should compute
the scroll increment that will completely expose one block
of rows or columns, depending on the value of orientation.
- getScrollableTracksViewportHeight() - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Return true if a viewport should always force the height of this
Scrollable to match the height of the viewport.
- getScrollableTracksViewportWidth() - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Return true if a viewport should always force the width of this
Scrollable
to match the width of the viewport.
- getScrollableUnitIncrement(Rectangle, int, int) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Components that display logical rows or columns should compute
the scroll increment that will completely expose one new row
or column, depending on the value of orientation.
- getSecure() - Method in class org.htmlparser.http.Cookie
-
Returns the value of the 'secure' flag.
- getSelection() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Return the current selection set as an array.
- getSequencerActive() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Gets the state of the sequencer thread.
- getSiblingFilter() - Method in class org.htmlparser.filters.HasSiblingFilter
-
Get the filter used by this HasSiblingFilter.
- getSize() - Method in class org.htmlparser.lexerapplications.thumbelina.TileSet
-
Get the number of tiles in this collection.
- getSource() - Method in class org.htmlparser.lexer.Page
-
Get the source this page is reading from.
- getSource() - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Getter for property source.
- getSpeed() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Get the sequencer delay time.
- getStartingLineNumber() - Method in class org.htmlparser.nodes.TagNode
-
Get the line number where this tag starts.
- getStartingLineNumber() - Method in interface org.htmlparser.Tag
-
Get the line number where this tag starts.
- getStartPosition() - Method in interface org.htmlparser.Node
-
Gets the starting position of the node.
- getStartPosition() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Gets the starting position of the node.
- getStartPosition() - Method in class org.htmlparser.nodes.AbstractNode
-
Gets the starting position of the node.
- getStatusBarVisible() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Gets the state of status bar visibility.
- getStrategy() - Method in class org.htmlparser.filters.RegexFilter
-
Get the search strategy.
- getStream() - Method in class org.htmlparser.lexer.InputStreamSource
-
Get the input stream being used.
- getString(int, int) - Method in class org.htmlparser.lexer.InputStreamSource
-
Retrieve a string.
- getString(int, int) - Method in class org.htmlparser.lexer.Source
-
Retrieve a string comprised of characters already read.
- getString(int, int) - Method in class org.htmlparser.lexer.StringSource
-
Retrieve a string comprised of characters already read.
- getStrings() - Method in class org.htmlparser.beans.HTMLTextBean
-
Getter for property strings.
- getStrings() - Method in class org.htmlparser.beans.StringBean
-
Return the textual contents of the URL.
- getStringText() - Method in class org.htmlparser.tags.CompositeTag
-
Return the text between the start tag and the end tag.
- getStyleCode() - Method in class org.htmlparser.tags.StyleTag
-
Get the style data in this tag.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSubNodeFilters() - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Get the underlying node filter's subordinate filters.
- getSystemId() - Method in class org.htmlparser.sax.Locator
-
Return the system identifier for the current document event.
- getTables() - Method in class org.htmlparser.visitors.HtmlPage
-
- getTagBegin() - Method in class org.htmlparser.nodes.TagNode
-
Gets the nodeBegin.
- getTagCount(int) - Method in class org.htmlparser.visitors.TagFindingVisitor
-
- getTagEnd() - Method in class org.htmlparser.nodes.TagNode
-
Gets the nodeEnd.
- getTagName() - Method in class org.htmlparser.nodes.TagNode
-
Return the name of this tag.
- getTagName() - Method in interface org.htmlparser.Tag
-
Return the name of this tag.
- getTagNames() - Method in class org.htmlparser.PrototypicalNodeFactory
-
Get the list of tag names.
- getTagPrototype() - Method in class org.htmlparser.PrototypicalNodeFactory
-
Get the object that is cloned to generate tag nodes.
- getTags() - Method in class org.htmlparser.visitors.ObjectFindingVisitor
-
- getTags(int) - Method in class org.htmlparser.visitors.TagFindingVisitor
-
- getTarget() - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Getter for property target.
- getText() - Method in class org.htmlparser.beans.FilterBean
-
Convenience method to apply a
StringBean
to the filter results.
- getText(int, int) - Method in class org.htmlparser.lexer.Page
-
Get the text identified by the given limits.
- getText(StringBuffer, int, int) - Method in class org.htmlparser.lexer.Page
-
Put the text identified by the given limits into the given buffer.
- getText() - Method in class org.htmlparser.lexer.Page
-
Get all text read so far from the source.
- getText(StringBuffer) - Method in class org.htmlparser.lexer.Page
-
Put all text read so far from the source into the given buffer.
- getText(char[], int, int, int) - Method in class org.htmlparser.lexer.Page
-
Put the text identified by the given limits into the given array at the specified offset.
- getText() - Method in interface org.htmlparser.Node
-
Returns the text of the node.
- getText() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- getText() - Method in class org.htmlparser.nodes.AbstractNode
-
Returns the text of the node.
- getText() - Method in class org.htmlparser.nodes.RemarkNode
-
Returns the text contents of the comment tag.
- getText() - Method in class org.htmlparser.nodes.TagNode
-
Return the text contained in this tag.
- getText() - Method in class org.htmlparser.nodes.TextNode
-
Returns the text of the node.
- getText() - Method in interface org.htmlparser.Remark
-
Returns the text contents of the comment tag.
- getText() - Method in class org.htmlparser.tags.CompositeTag
-
Return the text contained in this tag.
- getText() - Method in interface org.htmlparser.Text
-
Accesses the textual contents of the node.
- getTextAreaTag(String) - Method in class org.htmlparser.tags.FormTag
-
Find the textarea tag matching the given name
- getTextPrototype() - Method in class org.htmlparser.PrototypicalNodeFactory
-
Get the object that is cloned to generate text nodes.
- getThisScanner() - Method in class org.htmlparser.nodes.TagNode
-
Return the scanner associated with this tag.
- getThisScanner() - Method in interface org.htmlparser.Tag
-
Return the scanner associated with this tag.
- getThrowable() - Method in exception org.htmlparser.util.ChainedException
-
- getThumbelina() - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Access the Thumbelina object contained in the frame.
- getTitle() - Method in class org.htmlparser.tags.TitleTag
-
Get the title text.
- getTitle() - Method in class org.htmlparser.visitors.HtmlPage
-
- getTreeCellRendererComponent(JTree, Object, boolean, boolean, boolean, int, boolean) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeCellRenderer
-
Render the node for the tree cell.
- getType(int) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's type by index.
- getType(String, String) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's type by Namespace name.
- getType(String) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's type by XML qualified (prefixed) name.
- getType() - Method in class org.htmlparser.tags.ScriptTag
-
Get the TYPE
attribute, if any.
- getURI(int) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's Namespace URI by index.
- getURL() - Method in class org.htmlparser.beans.FilterBean
-
Get the current URL.
- getURL() - Method in class org.htmlparser.beans.HTMLLinkBean
-
Getter for property URL.
- getURL() - Method in class org.htmlparser.beans.HTMLTextBean
-
Getter for property URL.
- getURL() - Method in class org.htmlparser.beans.LinkBean
-
Getter for property URL.
- getURL() - Method in class org.htmlparser.beans.StringBean
-
Get the current URL.
- getUrl() - Method in class org.htmlparser.lexer.Page
-
Get the URL for this page.
- getURL() - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Getter for property URL.
- getURL() - Method in class org.htmlparser.Parser
-
Return the current URL being parsed.
- getURL(String) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Get a url for the given resource specification.
- getUser() - Method in class org.htmlparser.http.ConnectionManager
-
Get the user name to access the URL.
- getValue() - Method in class org.htmlparser.Attribute
-
Get the value of the attribute.
- getValue(StringBuffer) - Method in class org.htmlparser.Attribute
-
Get the value of the attribute.
- getValue() - Method in class org.htmlparser.http.Cookie
-
Returns the value of the cookie.
- getValue() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the value of the attribute.
- getValue(StringBuffer) - Method in class org.htmlparser.lexer.PageAttribute
-
Get the value of the attribute.
- getValue(int) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's value by index.
- getValue(String, String) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's value by Namespace name.
- getValue(String) - Method in class org.htmlparser.sax.Attributes
-
Look up an attribute's value by XML qualified (prefixed) name.
- getValue() - Method in class org.htmlparser.tags.OptionTag
-
Get the VALUE
attribute, if any.
- getValue() - Method in class org.htmlparser.tags.TextareaTag
-
Return the plain text contents from this text area.
- getValueEndPosition() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the ending position of the attribute value.
- getValueStartPosition() - Method in class org.htmlparser.lexer.PageAttribute
-
Get the starting position of the attribute value.
- getVersion() - Method in class org.htmlparser.http.Cookie
-
Returns the version of the cookie.
- getVersion() - Static method in class org.htmlparser.Parser
-
Return the version string of this parser.
- getVersionNumber() - Static method in class org.htmlparser.Parser
-
Return the version number of this parser.
- googlesearch() - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Query google via user specified keywords and queue results.
- mAbout - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
About menu item.
- mActive - Variable in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Activity state.
- mActive - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Activity state.
- main(String[]) - Static method in class org.htmlparser.beans.BeanyBaby
-
Unit test.
- main(String[]) - Static method in class org.htmlparser.beans.FilterBean
-
Unit test.
- main(String[]) - Static method in class org.htmlparser.beans.LinkBean
-
Unit test.
- main(String[]) - Static method in class org.htmlparser.beans.StringBean
-
Unit test.
- main(String[]) - Static method in class org.htmlparser.lexer.Lexer
-
Mainline for command line operation
- main(String[]) - Static method in class org.htmlparser.lexerapplications.tabby.Tabby
-
Run Tabby on a file or directory.
- main(String[]) - Static method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Mainline.
- main(String[]) - Static method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Alternate mainline for Thumbelina.
- main(String[]) - Static method in class org.htmlparser.Parser
-
The main program, which can be executed from the command line
- main(String[]) - Static method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The entry point for this application.
- main(String[]) - Static method in class org.htmlparser.parserapplications.LinkExtractor
-
Run the link extractor.
- main(String[]) - Static method in class org.htmlparser.parserapplications.SiteCapturer
-
Mainline to capture a web site locally.
- main(String[]) - Static method in class org.htmlparser.parserapplications.StringExtractor
-
Mainline.
- main(String[]) - Static method in class org.htmlparser.parserapplications.WikiCapturer
-
Mainline to capture a web site locally.
- main(String[]) - Static method in class org.htmlparser.util.Translate
-
Numeric character reference and character entity reference to unicode codec.
- makeFilterButton(String) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Creates a new button for the given class.
- makeLocalLink(String, String) - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Converts a link to local.
- makeMenu() - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Create the menu.
- makeMenuButton(String, String, String, int, KeyStroke, JToolBar, JMenu) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Makes menu and toolbar items for commands.
- makeProgram(String, StringBuffer, FilterBean) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Makes a program like:
- makeRemark(int, int) - Method in class org.htmlparser.lexer.Lexer
-
Create a remark node based on the current cursor and the one provided.
- makeString(int, int) - Method in class org.htmlparser.lexer.Lexer
-
Create a string node based on the current cursor and the one provided.
- makeTag(int, int, Vector) - Method in class org.htmlparser.lexer.Lexer
-
Create a tag node based on the current cursor and the one provided.
- mark(int) - Method in class org.htmlparser.lexer.InputStreamSource
-
Mark the present position in the source.
- mark(int) - Method in class org.htmlparser.lexer.Source
-
Mark the present position.
- mark(int) - Method in class org.htmlparser.lexer.Stream
-
Marks the current position in this input stream.
- mark(int) - Method in class org.htmlparser.lexer.StringSource
-
Mark the present position in the source.
- markSupported() - Method in class org.htmlparser.lexer.InputStreamSource
-
Tell whether this source supports the mark() operation.
- markSupported() - Method in class org.htmlparser.lexer.Source
-
Tell whether this source supports the mark() operation.
- markSupported() - Method in class org.htmlparser.lexer.Stream
-
Tests if this input stream supports the mark
and
reset
methods.
- markSupported() - Method in class org.htmlparser.lexer.StringSource
-
Tell whether this source supports the mark() operation.
- mAssignment - Variable in class org.htmlparser.Attribute
-
The assignment string of the attribute.
- MATCH - Static variable in class org.htmlparser.filters.RegexFilter
-
Use match() matching strategy.
- mAttribute - Variable in class org.htmlparser.filters.HasAttributeFilter
-
The attribute to check for.
- mAttributeName - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Combo box for attribute name.
- mAttributes - Variable in class org.htmlparser.nodes.TagNode
-
The tag attributes.
- mAttributeValue - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Value to check for.
- maximumLayoutSize(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
-
Returns the maximum size of this component.
- maximumLayoutSize(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
-
Returns the maximum size of this component.
- mBackgroundToggle - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Background thread checkbox in status bar.
- mBasePoint - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The relative position of the mouse while dragging.
- mBaseUrl - Variable in class org.htmlparser.lexer.Page
-
The base URL for this page.
- mBean - Variable in class org.htmlparser.beans.HTMLLinkBean
-
The underlying bean that provides our htmlparser specific properties.
- mBean - Variable in class org.htmlparser.beans.HTMLTextBean
-
The underlying bean that provides our htmlparser specific properties.
- mBlastocyst - Variable in class org.htmlparser.PrototypicalNodeFactory
-
The list of tags to return.
- mBuffer - Variable in class org.htmlparser.beans.StringBean
-
The buffer text is stored in while traversing the HTML.
- mBuffer - Variable in class org.htmlparser.lexer.InputStreamSource
-
The characters read so far.
- mBuffer - Variable in class org.htmlparser.lexer.Stream
-
The bytes read so far.
- mCaptureResources - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
If true
, save resources locally too,
otherwise, leave resource links pointing to original page.
- mCaseSensitive - Variable in class org.htmlparser.filters.LinkStringFilter
-
Flag indicating case sensitive/insensitive search.
- mCaseSensitive - Variable in class org.htmlparser.filters.StringFilter
-
Case sensitive toggle.
- mCaseSensitivity - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
The check box for case sensitivity.
- mCharacter - Variable in class org.htmlparser.util.CharacterReference
-
The character value as an integer.
- mCharacterList - Static variable in class org.htmlparser.util.Translate
-
List of references sorted by character.
- mCharacterReferences - Static variable in class org.htmlparser.util.Translate
-
Table mapping entity reference kernel to character.
- mChildFilter - Variable in class org.htmlparser.filters.HasChildFilter
-
The filter to apply to children.
- mClass - Variable in class org.htmlparser.filters.NodeClassFilter
-
The class to match.
- mClass - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Combo box for strategy.
- mClear - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Clear menu item
- mCode - Variable in class org.htmlparser.tags.ScriptTag
-
Script code if different from the page contents.
- mCollapse - Variable in class org.htmlparser.beans.StringBean
-
If true
sequences of whitespace characters are replaced
with a single space character.
- mCommand - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Vommand menu.
- mComment - Variable in class org.htmlparser.http.Cookie
-
Describes the cookie's use.
- mConnection - Variable in class org.htmlparser.lexer.Page
-
The connection this page is coming from or null
.
- mConnectionManager - Static variable in class org.htmlparser.lexer.Page
-
Connection control (proxy, cookies, authorization).
- mContainer - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
The drop target container.
- mContainer - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
The drop target container.
- mContainer - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
The drop target container.
- mContainer - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
The drop target container.
- mContainer - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
The drop target container.
- mContainer - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
The drop target container.
- mContentHandler - Variable in class org.htmlparser.sax.XMLReader
-
The content callback object.
- mContentLength - Variable in class org.htmlparser.lexer.Stream
-
The content length from the HTTP header.
- mConvertNonBreakingSpaces - Variable in class org.htmlparser.StringNodeFactory
-
Deprecated.
Flag to tell the parser to convert non breaking space (from ? to a space " ").
- mCookieJar - Variable in class org.htmlparser.http.ConnectionManager
-
Cookie storage, a hashtable (by site or host) of vectors of Cookies.
- mCopied - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The set of resources already copied.
- mCount - Variable in class org.htmlparser.lexer.PageIndex
-
The number of valid elements.
- mCrumb - Variable in class org.htmlparser.beans.BeanyBaby
-
Current position on the bread crumb trail.
- mCurrentComponent - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Kludge: Used by actionPerformed/filterAction to remember the filter menu item.
- mCurrentURL - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
The URL being currently being examined.
- mCursor - Variable in class org.htmlparser.lexer.Lexer
-
The current position on the page.
- mDebugLineTrigger - Static variable in class org.htmlparser.lexer.Lexer
-
Line number to trigger on.
- mDecode - Variable in class org.htmlparser.StringNodeFactory
-
Deprecated.
Flag to tell the parser to decode strings returned by StringNode's toPlainTextString.
- mDefaultCompositeScanner - Static variable in class org.htmlparser.tags.CompositeTag
-
The default scanner for non-composite tags.
- mDefaultRequestProperties - Static variable in class org.htmlparser.http.ConnectionManager
-
Default Request header fields.
- mDefaultScanner - Static variable in class org.htmlparser.nodes.TagNode
-
The default scanner for non-composite tags.
- mDelay - Variable in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Delay between picture displays.
- mDigits - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
The base 64 decoding table.
- mDiscardCGI - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
If true
, does not follow links containing cgi calls.
- mDiscardQueries - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
If true
, does not follow links containing queries (?).
- mDomain - Variable in class org.htmlparser.http.Cookie
-
Domain that sees cookie.
- mDragSource - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Enables this component to be a Drag Source.
- mDropTarget - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
This component is a drop target.
- mDTDHandler - Variable in class org.htmlparser.sax.XMLReader
-
not implemented
- memCheck() - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Check for low memory situation.
- mEncoding - Variable in class org.htmlparser.lexer.InputStreamSource
-
The character set in use.
- mEncoding - Variable in class org.htmlparser.lexer.StringSource
-
The encoding to report.
- mEncodingIndex - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
Table of lookup choice.
- mEndTag - Variable in class org.htmlparser.tags.CompositeTag
-
The tag that causes this tag to finish.
- mEntityResolver - Variable in class org.htmlparser.sax.XMLReader
-
not implemented
- mErrorHandler - Variable in class org.htmlparser.sax.Feedback
-
The error handler to call back on.
- mErrorHandler - Variable in class org.htmlparser.sax.XMLReader
-
The error handler object.
- mEscaped - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
The escaped characters corresponding to the each escape sequence.
- mEscapes - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
Escape sequence characters.
- MetaTag - Class in org.htmlparser.tags
-
A Meta Tag
- MetaTag() - Constructor for class org.htmlparser.tags.MetaTag
-
Create a new meta tag.
- mExit - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Exit menu item.
- mExpiry - Variable in class org.htmlparser.http.Cookie
-
Cookie expires after this date.
- mExtra - Variable in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Padding for the drop target.
- mFactory - Variable in class org.htmlparser.lexer.Lexer
-
The factory for new nodes.
- mFeedback - Variable in class org.htmlparser.Parser
-
Feedback object.
- mFilter - Variable in class org.htmlparser.lexerapplications.tabby.Tabby
-
The file filter to apply.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
The underlying filter.
- mFilter - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The filter to apply to the nodes retrieved.
- mFilters - Variable in class org.htmlparser.beans.FilterBean
-
The filter set.
- mFinished - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The set of pages already captured.
- mFormLocation - Variable in class org.htmlparser.tags.FormTag
-
This is the derived form location, based on action.
- mGoogle - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Google menu item.
- mHelp - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Help submenu.
- mHistory - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
History list.
- mHistoryScroller - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Scroller for the history list.
- mHistoryVisible - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
History list visible menu item.
- mHome - Variable in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
The parent filter wrapper.
- mImage - Variable in class org.htmlparser.lexerapplications.thumbelina.Picture
-
The image for the picture.
- mImages - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The list of resources to copy.
- mIn - Variable in class org.htmlparser.lexer.Stream
-
The underlying stream.
- mIncrement - Variable in class org.htmlparser.lexer.PageIndex
-
Increment for allocations.
- mIndex - Variable in class org.htmlparser.lexer.Page
-
Character positions of the first character in each line.
- mIndices - Variable in class org.htmlparser.lexer.PageIndex
-
The elements.
- minimumLayoutSize(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.NullLayoutManager
-
Calculates the minimum size dimensions for the specified
panel given the components in the specified parent container.
- minimumLayoutSize(Container) - Method in class org.htmlparser.parserapplications.filterbuilder.layouts.VerticalLayoutManager
-
Calculates the minimum size dimensions for the specified
panel given the components in the specified parent container.
- mIsPre - Variable in class org.htmlparser.beans.StringBean
-
Set true
when traversing a PRE tag.
- mIsScript - Variable in class org.htmlparser.beans.StringBean
-
Set true
when traversing a SCRIPT tag.
- mIsStyle - Variable in class org.htmlparser.beans.StringBean
-
Set true
when traversing a STYLE tag.
- mKernel - Variable in class org.htmlparser.util.CharacterReference
-
This entity reference kernel.
- mLeader - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
The leader.
- mLevel - Variable in class org.htmlparser.lexer.InputStreamSource
-
The number of valid bytes in the buffer.
- mLevel - Variable in class org.htmlparser.lexer.Stream
-
The number of valid bytes in the buffer.
- mLexer - Variable in class org.htmlparser.Parser
-
The html lexer associated with this parser.
- mLink - Variable in class org.htmlparser.tags.LinkTag
-
The URL where the link points to
- mLinks - Variable in class org.htmlparser.beans.LinkBean
-
The strings extracted from the URL.
- mLinks - Variable in class org.htmlparser.beans.StringBean
-
If true
the link URLs are embedded in the text output.
- mLocale - Variable in class org.htmlparser.filters.StringFilter
-
The locale to use converting to uppercase in case insensitive searches.
- mLocale - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Combo box for locale.
- mLocales - Static variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Cached locales.
- mLocator - Variable in class org.htmlparser.sax.Feedback
-
The locator for tag positions.
- mLookupTable - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
Two dimensional lookup table.
- mMainArea - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Main panel in central area.
- mMainPanel - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The main panel GUI component.
- mMainScroller - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The main panel scrolling GUI component.
- mMap - Static variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Mapping for RegexFilter constants to strings.
- mMark - Variable in class org.htmlparser.lexer.InputStreamSource
-
The bookmark.
- mMark - Variable in class org.htmlparser.lexer.Stream
-
The bookmark.
- mMark - Variable in class org.htmlparser.lexer.StringSource
-
The bookmark.
- mMax - Variable in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
The number of filters limit.
- mMenu - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Main menu.
- mMode - Variable in class org.htmlparser.util.DefaultParserFeedback
-
Verbosity level.
- mMonitor - Variable in class org.htmlparser.http.ConnectionManager
-
The object to be notified prior to and after each connection.
- mMosaic - Variable in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
The display mosaic.
- mMoved - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
If true selection moved.
- mName - Variable in class org.htmlparser.Attribute
-
The name of this attribute.
- mName - Variable in class org.htmlparser.filters.TagNameFilter
-
The tag name to match.
- mName - Variable in class org.htmlparser.http.Cookie
-
The name of the cookie.
- mName - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Combo box for tag name.
- mNameEnd - Variable in class org.htmlparser.lexer.PageAttribute
-
The ending offset of the name within the page.
- mNameSpacePrefixes - Variable in class org.htmlparser.sax.XMLReader
-
Determines if namespace prefix handling is on.
- mNameSpaces - Variable in class org.htmlparser.sax.XMLReader
-
Determines if namespace handling is on.
- mNameStart - Variable in class org.htmlparser.lexer.PageAttribute
-
The starting offset of the name within the page.
- mNode - Variable in class org.htmlparser.filters.IsEqualFilter
-
The node to match.
- mNodes - Variable in class org.htmlparser.beans.FilterBean
-
The nodes extracted from the URL.
- mOffset - Variable in class org.htmlparser.lexer.InputStreamSource
-
The offset of the next byte returned by read().
- mOffset - Variable in class org.htmlparser.lexer.Stream
-
The offset of the next byte returned by read().
- mOffset - Variable in class org.htmlparser.lexer.StringSource
-
The current offset into the string.
- mOpen - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Open menu item.
- mOrigin - Variable in class org.htmlparser.lexerapplications.thumbelina.Picture
-
The upper left hand corner of the image.
- mouseClicked(MouseEvent) - Method in class org.htmlparser.beans.BeanyBaby
-
Invoked when the mouse button has been clicked on a component.
- mouseClicked(MouseEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Invoked when the mouse button has been clicked
(pressed and released) on a component.
- mouseClicked(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Invoked when the mouse has been clicked on a component.
- mouseDragged(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Mouse drag notification.
- mouseEntered(MouseEvent) - Method in class org.htmlparser.beans.BeanyBaby
-
Invoked when the mouse enters a component.
- mouseEntered(MouseEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Invoked when the mouse enters a component.
- mouseEntered(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Invoked when the mouse enters a component.
- mouseExited(MouseEvent) - Method in class org.htmlparser.beans.BeanyBaby
-
Invoked when the mouse exits a component.
- mouseExited(MouseEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Invoked when the mouse exits a component.
- mouseExited(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Invoked when the mouse exits a component.
- mouseMoved(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Mouse move notification.
- mousePressed(MouseEvent) - Method in class org.htmlparser.beans.BeanyBaby
-
Invoked when a mouse button has been pressed on a component.
- mousePressed(MouseEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Handle left click on a picture by bringing it to the top.
- mousePressed(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Invoked when a mouse button has been pressed on a component.
- mouseReleased(MouseEvent) - Method in class org.htmlparser.beans.BeanyBaby
-
Invoked when a mouse button has been released on a component.
- mouseReleased(MouseEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Invoked when a mouse button has been released on a component.
- mouseReleased(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Invoked when a mouse button has been released on a component.
- mOutput - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The output panel GUI component.
- moveSelection(Point) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Move the current selection set as a group.
- mPage - Variable in class org.htmlparser.lexer.Cursor
-
This cursor's page.
- mPage - Variable in class org.htmlparser.lexer.Lexer
-
The page lexemes are retrieved from.
- mPage - Variable in class org.htmlparser.lexer.PageAttribute
-
The page this attribute is extracted from.
- mPage - Variable in class org.htmlparser.lexer.PageIndex
-
The page associated with this index.
- mPage - Variable in class org.htmlparser.nodes.AbstractNode
-
The page this node came from.
- mPages - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The list of pages to capture.
- mParentFilter - Variable in class org.htmlparser.filters.HasParentFilter
-
The filter to apply to the parent.
- mParser - Variable in class org.htmlparser.beans.FilterBean
-
The parser used to filter.
- mParser - Variable in class org.htmlparser.beans.LinkBean
-
The parser used to extract strings.
- mParser - Variable in class org.htmlparser.beans.StringBean
-
The parser used to extract strings.
- mParser - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The parser to use for processing.
- mParser - Variable in class org.htmlparser.sax.Locator
-
Underlying parser object.
- mParser - Variable in class org.htmlparser.sax.XMLReader
-
The underlying DOM parser.
- mParts - Variable in class org.htmlparser.sax.Attributes
-
Elements of the qname.
- mParts - Variable in class org.htmlparser.sax.XMLReader
-
Qualified name parts.
- mPassword - Variable in class org.htmlparser.http.ConnectionManager
-
The user password for accessing the URL.
- mPath - Variable in class org.htmlparser.http.Cookie
-
URLs that see the cookie.
- mPattern - Variable in class org.htmlparser.filters.LinkStringFilter
-
The pattern to search for in the link.
- mPattern - Variable in class org.htmlparser.filters.RegexFilter
-
The compiled regular expression to search for.
- mPattern - Variable in class org.htmlparser.filters.StringFilter
-
The string to search for.
- mPattern - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Text to check for
- mPattern - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Text to check for.
- mPatternString - Variable in class org.htmlparser.filters.RegexFilter
-
The regular expression to search for.
- mPending - Variable in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Pictures awaiting display.
- mPicturePanel - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
The central area for pictures.
- mPicturePanelScroller - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Scroller for the picture panel.
- mPosition - Variable in class org.htmlparser.lexer.Cursor
-
This cursor's position.
- mPowerBar - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Status bar.
- mPredicate - Variable in class org.htmlparser.filters.NotFilter
-
The filter to gainsay.
- mPredicates - Variable in class org.htmlparser.filters.AndFilter
-
The predicates that are to be and'ed together;
- mPredicates - Variable in class org.htmlparser.filters.OrFilter
-
The predicates that are to be or'ed together;
- mPreferredSize - Variable in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
The preferred size of this component.
- mPrefix - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
The prefix.
- mPropertySupport - Variable in class org.htmlparser.beans.FilterBean
-
Bound property support.
- mPropertySupport - Variable in class org.htmlparser.beans.LinkBean
-
Bound property support.
- mPropertySupport - Variable in class org.htmlparser.beans.StringBean
-
Bound property support.
- mPropertySupport - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Bound property support.
- mProxyHost - Variable in class org.htmlparser.http.ConnectionManager
-
The proxy server name.
- mProxyPassword - Variable in class org.htmlparser.http.ConnectionManager
-
The proxy user password.
- mProxyPort - Variable in class org.htmlparser.http.ConnectionManager
-
The proxy port number.
- mProxyUser - Variable in class org.htmlparser.http.ConnectionManager
-
The proxy username name.
- mQueueProgress - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Image request queue monitor in status bar.
- mQueueSize - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
URL queue size display in status bar.
- mQuote - Variable in class org.htmlparser.Attribute
-
The quote, if any, surrounding the value of the attribute, if any.
- mRandom - Variable in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Random number generator for picture placement.
- mReader - Variable in class org.htmlparser.lexer.InputStreamSource
-
The converter from bytes to characters.
- mReadyProgress - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Image ready queue monitor in status bar.
- mRecursive - Variable in class org.htmlparser.filters.HasChildFilter
-
Performs a recursive search down the node heirarchy if true
.
- mRecursive - Variable in class org.htmlparser.filters.HasParentFilter
-
Performs a recursive search up the node heirarchy if true
.
- mRecursive - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
The check box for recursion.
- mRecursive - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
The check box for recursion.
- mRegex - Variable in class org.htmlparser.filters.LinkRegexFilter
-
The regular expression to use on the link.
- mRegions - Variable in class org.htmlparser.lexerapplications.thumbelina.TileSet
-
The list of Pictures.
- mRemark - Variable in class org.htmlparser.PrototypicalNodeFactory
-
The prototypical remark node.
- mRemoveEscapes - Variable in class org.htmlparser.StringNodeFactory
-
Deprecated.
Flag to tell the parser to remove escape characters, like \n and \t, returned by StringNode's toPlainTextString.
- mReplaceSpace - Variable in class org.htmlparser.beans.StringBean
-
If true
regular space characters are substituted for
non-breaking spaces in the text output.
- mRequested - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Images requested.
- mRequestProperties - Variable in class org.htmlparser.http.ConnectionManager
-
Request header fields.
- mReset - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Reset menu item.
- mRoot - Variable in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
- mRunToggle - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Sequencer thread toggle in status bar.
- mSecure - Variable in class org.htmlparser.http.Cookie
-
Use SSL.
- mSelection - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Selected commands.
- mSeparator1 - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
MRU list separator #1.
- mSeparator2 - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
MRU list separator #2.
- mSequencer - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
The picture sequencer.
- mSiblingFilter - Variable in class org.htmlparser.filters.HasSiblingFilter
-
The filter to apply to the sibling.
- mSource - Variable in class org.htmlparser.lexer.Page
-
The source of characters.
- mSource - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The web site to capture.
- mSpacer - Variable in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
The drop target spacer at the bottom of the list.
- mSpeedSlider - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Sequencer speed slider in status bar.
- mStartIncrement - Static variable in class org.htmlparser.lexer.PageIndex
-
Starting increment for allocations.
- mStatusVisible - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Status bar visible menu item.
- mStrategy - Variable in class org.htmlparser.filters.RegexFilter
-
The match strategy.
- mStrategy - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Combo box for strategy.
- mStream - Variable in class org.htmlparser.lexer.InputStreamSource
-
The stream of bytes.
- mString - Variable in class org.htmlparser.lexer.StringSource
-
The source of characters.
- mStrings - Variable in class org.htmlparser.beans.StringBean
-
The strings extracted from the URL.
- mSupport - Variable in class org.htmlparser.sax.Attributes
-
The utility class that converts namespaces.
- mSupport - Variable in class org.htmlparser.sax.XMLReader
-
Namspace utility object.
- mTabsize - Variable in class org.htmlparser.lexerapplications.tabby.Tabby
-
The replacement tab stop size.
- mTag - Variable in class org.htmlparser.PrototypicalNodeFactory
-
The prototypical tag node.
- mTag - Variable in class org.htmlparser.sax.Attributes
-
The tag from which attributes are exposed.
- mTarget - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
The local directory to capture to.
- mText - Variable in class org.htmlparser.nodes.RemarkNode
-
The contents of the remark node, or override text.
- mText - Variable in class org.htmlparser.nodes.TextNode
-
The contents of the string node, or override text.
- mText - Variable in class org.htmlparser.PrototypicalNodeFactory
-
The prototypical text node.
- mThread - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Background thread.
- mThumbelina - Variable in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
The thumbelina object in use.
- mThumbelina - Variable in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
The thumbelina object to drive.
- mTitle - Variable in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
The textual title for the list.
- mTracked - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Images being tracked currently.
- mTrail - Variable in class org.htmlparser.beans.BeanyBaby
-
Bread crumb trail of visited URLs.
- mTrailer - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
The trailer.
- mTreeListeners - Variable in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeModel
-
The list of tree listeners.
- mUpperPattern - Variable in class org.htmlparser.filters.StringFilter
-
The string to really search for (converted to uppercase if necessary).
- mUrl - Variable in class org.htmlparser.lexer.Page
-
The URL this page is coming from.
- mURL - Variable in class org.htmlparser.lexerapplications.thumbelina.Picture
-
The URL for the picture.
- mURL - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
URL submenu.
- mURLField - Variable in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The URL input GUI component.
- mUrlText - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
URL report in status bar.
- mUser - Variable in class org.htmlparser.http.ConnectionManager
-
The username name for accessing the URL.
- mValue - Variable in class org.htmlparser.Attribute
-
The value of the attribute.
- mValue - Variable in class org.htmlparser.filters.HasAttributeFilter
-
The value to check for.
- mValue - Variable in class org.htmlparser.http.Cookie
-
The cookie value.
- mValued - Variable in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
The check box for has value.
- mValueEnd - Variable in class org.htmlparser.lexer.PageAttribute
-
The ending offset of the name within the page.
- mValueStart - Variable in class org.htmlparser.lexer.PageAttribute
-
The starting offset of the value within the page.
- mVersion - Variable in class org.htmlparser.http.Cookie
-
If Version=1 it means RFC 2109++ style cookies.
- mView - Variable in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
View submenu.
- mVisited - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
URL's visited.
- mVisitedSize - Variable in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
URL visited count display in status bar.
- mWrappers - Static variable in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Map from cilter class to wrapper.
- same(Picture) - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Return true
if that picture is the same as this one.
- save(String) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Save the workspace contents to file.
- saveAction() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The action to take when "Save" menu or button pressed.
- saveasAction() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The action to take when "Save As" menu or button pressed.
- saveCookies(Vector, URLConnection) - Method in class org.htmlparser.http.ConnectionManager
-
Save the cookies received in the response header.
- saveState() - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Saves the current settings in the user preferences.
- scan(Tag, Lexer, NodeList) - Method in class org.htmlparser.scanners.CompositeTagScanner
-
Collect the children.
- scan(Tag, Lexer, NodeList) - Method in interface org.htmlparser.scanners.Scanner
-
Scan the tag.
- scan(Tag, Lexer, NodeList) - Method in class org.htmlparser.scanners.ScriptScanner
-
Scan for script.
- scan(Tag, Lexer, NodeList) - Method in class org.htmlparser.scanners.StyleScanner
-
Scan for style definitions.
- scan(Tag, Lexer, NodeList) - Method in class org.htmlparser.scanners.TagScanner
-
Scan the tag.
- scanJIS(Cursor) - Method in class org.htmlparser.lexer.Lexer
-
Advance the cursor through a JIS escape sequence.
- Scanner - Interface in org.htmlparser.scanners
-
Generic interface for scanning.
- ScriptDecoder - Class in org.htmlparser.scanners
-
Decode script.
- ScriptDecoder() - Constructor for class org.htmlparser.scanners.ScriptDecoder
-
- ScriptScanner - Class in org.htmlparser.scanners
-
The ScriptScanner handles script CDATA.
- ScriptScanner() - Constructor for class org.htmlparser.scanners.ScriptScanner
-
Create a script scanner.
- ScriptTag - Class in org.htmlparser.tags
-
A script tag.
- ScriptTag() - Constructor for class org.htmlparser.tags.ScriptTag
-
Create a new script tag.
- searchByName(String) - Method in class org.htmlparser.tags.CompositeTag
-
Searches all children who for a name attribute.
- searchFor(String) - Method in class org.htmlparser.tags.CompositeTag
-
Searches for all nodes whose text representation contains the search string.
- searchFor(String, boolean) - Method in class org.htmlparser.tags.CompositeTag
-
Searches for all nodes whose text representation contains the search string.
- searchFor(String, boolean, Locale) - Method in class org.htmlparser.tags.CompositeTag
-
Searches for all nodes whose text representation contains the search string.
- searchFor(Class, boolean) - Method in class org.htmlparser.tags.CompositeTag
-
Collect all objects that are of a certain type
Note that this will not check for parent types, and will not
recurse through child tags
- searchFor(Class) - Method in class org.htmlparser.util.NodeList
-
Convenience method to search for nodes of the given type non-recursively.
- searchFor(Class, boolean) - Method in class org.htmlparser.util.NodeList
-
Convenience method to search for nodes of the given type.
- selectionContains(Filter) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Check if the current selection set contains the given filter.
- selectSelection(boolean) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Select(highlight)/deselect the current selection set.
- SelectTag - Class in org.htmlparser.tags
-
A select tag within a form.
- SelectTag() - Constructor for class org.htmlparser.tags.SelectTag
-
Create a new select tag.
- Sequencer - Class in org.htmlparser.lexerapplications.thumbelina
-
Display received images at a constant rate.
- Sequencer(Thumbelina) - Constructor for class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Creates a new instance of a Sequencer.
- serialize(byte[]) - Static method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Serialize a byte array to a String.
- serializeSelection() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Serialize the current selection set.
- setAppletClass(String) - Method in class org.htmlparser.tags.AppletTag
-
Set the CODE attribute.
- setAppletParams(Hashtable) - Method in class org.htmlparser.tags.AppletTag
-
Set the enclosed PARM children.
- setArchive(String) - Method in class org.htmlparser.tags.AppletTag
-
Set the ARCHIVE attribute.
- setAssignment(String) - Method in class org.htmlparser.Attribute
-
Set the assignment string of this attribute.
- setAttribute(String, String) - Method in class org.htmlparser.nodes.TagNode
-
Set attribute with given key, value pair.
- setAttribute(String, String, char) - Method in class org.htmlparser.nodes.TagNode
-
Set attribute with given key, value pair where the value is quoted by quote.
- setAttribute(Attribute) - Method in class org.htmlparser.nodes.TagNode
-
Set an attribute.
- setAttribute(String, String) - Method in interface org.htmlparser.Tag
-
Set attribute with given key, value pair.
- setAttribute(String, String, char) - Method in interface org.htmlparser.Tag
-
Set attribute with given key/value pair, the value is quoted by quote.
- setAttributeEx(Attribute) - Method in class org.htmlparser.nodes.TagNode
-
Set an attribute.
- setAttributeEx(Attribute) - Method in interface org.htmlparser.Tag
-
Set an attribute.
- setAttributeName(String) - Method in class org.htmlparser.filters.HasAttributeFilter
-
Set the attribute name.
- setAttributes(Hashtable) - Method in class org.htmlparser.nodes.TagNode
-
Sets the attributes.
- setAttributes(Hashtable) - Method in interface org.htmlparser.Tag
-
Deprecated.
Use setAttributesEx() instead.
- setAttributesEx(Vector) - Method in class org.htmlparser.nodes.TagNode
-
Sets the attributes.
- setAttributesEx(Vector) - Method in interface org.htmlparser.Tag
-
Sets the attributes.
- setAttributeValue(String) - Method in class org.htmlparser.filters.HasAttributeFilter
-
Set the attribute value.
- setBackgroundThreadActive(boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Sets the state of the background thread activity.
- setBasePoint(Point) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Sets the position of the mouse in the component.
- setBaseUrl(String) - Method in class org.htmlparser.lexer.Page
-
Sets the baseUrl.
- setBaseUrl(String) - Method in class org.htmlparser.tags.BaseHrefTag
-
Set the value of the HREF
attribute.
- setBaseUrl(String) - Method in class org.htmlparser.util.LinkProcessor
-
Deprecated.
Sets the baseUrl.
- setCaptureResources(boolean) - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Setter for property captureResources.
- setCaseSensitive(boolean) - Method in class org.htmlparser.filters.StringFilter
-
Set case sensitivity on or off.
- setChildFilter(NodeFilter) - Method in class org.htmlparser.filters.HasChildFilter
-
Set the filter for this HasParentFilter.
- setChildren(NodeList) - Method in interface org.htmlparser.Node
-
Set the children of this node.
- setChildren(NodeList) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Set the children of this node.
- setChildren(NodeList) - Method in class org.htmlparser.nodes.AbstractNode
-
Set the children of this node.
- setCodeBase(String) - Method in class org.htmlparser.tags.AppletTag
-
Set the CODEBASE attribute.
- setCollapse(boolean) - Method in class org.htmlparser.beans.HTMLTextBean
-
Set the current 'collapse whitespace' state.
- setCollapse(boolean) - Method in class org.htmlparser.beans.StringBean
-
Set the current 'collapse whitespace' state.
- setComment(String) - Method in class org.htmlparser.http.Cookie
-
If a user agent (web browser) presents this cookie to a user, the
cookie's purpose will be described using this comment.
- setConnection(URLConnection) - Method in class org.htmlparser.beans.FilterBean
-
Set the parser's connection.
- setConnection(URLConnection) - Method in class org.htmlparser.beans.HTMLLinkBean
-
Setter for property Connection.
- setConnection(URLConnection) - Method in class org.htmlparser.beans.HTMLTextBean
-
Setter for property Connection.
- setConnection(URLConnection) - Method in class org.htmlparser.beans.LinkBean
-
Setter for property Connection.
- setConnection(URLConnection) - Method in class org.htmlparser.beans.StringBean
-
Set the parser's connection.
- setConnection(URLConnection) - Method in class org.htmlparser.lexer.Page
-
Set the URLConnection to be used by this page.
- setConnection(URLConnection) - Method in class org.htmlparser.Parser
-
Set the connection for this parser.
- setConnectionManager(ConnectionManager) - Static method in class org.htmlparser.lexer.Page
-
Set the connection manager to use.
- setConnectionManager(ConnectionManager) - Static method in class org.htmlparser.Parser
-
Set the connection manager all Parsers use.
- setContentHandler(ContentHandler) - Method in class org.htmlparser.sax.XMLReader
-
Allow an application to register a content event handler.
- setConvertNonBreakingSpaces(boolean) - Method in class org.htmlparser.StringNodeFactory
-
Deprecated.
Set the non-breaking space replacing state.
- setCookie(Cookie, String) - Method in class org.htmlparser.http.ConnectionManager
-
Adds a cookie to the cookie jar.
- setCookieProcessingEnabled(boolean) - Method in class org.htmlparser.http.ConnectionManager
-
Enables and disabled cookie processing.
- setCurrentURL(String) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Set the current URL being examined.
- setCursor(Cursor) - Method in class org.htmlparser.lexer.Lexer
-
Set the current scanning position.
- setDecode(boolean) - Method in class org.htmlparser.StringNodeFactory
-
Deprecated.
Set the decoding state.
- setDefaultRequestProperties(Hashtable) - Static method in class org.htmlparser.http.ConnectionManager
-
Set the default request header properties.
- setDelay(int) - Method in class org.htmlparser.lexerapplications.thumbelina.Sequencer
-
Setter for property delay.
- setDiscardCGI(boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Setter for property discardCGI.
- setDiscardQueries(boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Setter for property discardQueries.
- setDomain(String) - Method in class org.htmlparser.http.Cookie
-
This cookie should be presented only to hosts satisfying this domain name
pattern.
- setDTDHandler(DTDHandler) - Method in class org.htmlparser.sax.XMLReader
-
Allow an application to register a DTD event handler.
- setEmptyXmlTag(boolean) - Method in class org.htmlparser.nodes.TagNode
-
Set this tag to be an empty xml node, or not.
- setEmptyXmlTag(boolean) - Method in interface org.htmlparser.Tag
-
Set this tag to be an empty xml node, or not.
- setEncoding(String) - Method in class org.htmlparser.lexer.InputStreamSource
-
Begins reading from the source with the given character set.
- setEncoding(String) - Method in class org.htmlparser.lexer.Page
-
Begins reading from the source with the given character set.
- setEncoding(String) - Method in class org.htmlparser.lexer.Source
-
Set the encoding to the given character set.
- setEncoding(String) - Method in class org.htmlparser.lexer.StringSource
-
Set the encoding to the given character set.
- setEncoding(String) - Method in class org.htmlparser.Parser
-
Set the encoding for the page this parser is reading from.
- setEndPosition(int) - Method in interface org.htmlparser.Node
-
Sets the ending position of the node.
- setEndPosition(int) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Sets the ending position of the node.
- setEndPosition(int) - Method in class org.htmlparser.nodes.AbstractNode
-
Sets the ending position of the node.
- setEndTag(Tag) - Method in class org.htmlparser.nodes.TagNode
-
Set the end tag for this (composite) tag.
- setEndTag(Tag) - Method in interface org.htmlparser.Tag
-
Set the end tag for this (composite) tag.
- setEndTag(Tag) - Method in class org.htmlparser.tags.CompositeTag
-
Set the end tag for this tag.
- setEntityResolver(EntityResolver) - Method in class org.htmlparser.sax.XMLReader
-
Allow an application to register an entity resolver.
- setErrorHandler(ErrorHandler) - Method in class org.htmlparser.sax.XMLReader
-
Allow an application to register an error event handler.
- setExpanded(boolean) - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Set the expanded state for the component.
- setExpanded(Filter[], boolean, boolean) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Expand or collapse filters, possibly recursively.
- setExpiryDate(Date) - Method in class org.htmlparser.http.Cookie
-
Sets the expiry date of the cookie.
- setFeature(String, boolean) - Method in class org.htmlparser.sax.XMLReader
-
Set the value of a feature flag.
- setFeedback(ParserFeedback) - Method in class org.htmlparser.Parser
-
Sets the feedback object used in scanning.
- setFilter(NodeFilter) - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Setter for property filter.
- setFilters(NodeFilter[]) - Method in class org.htmlparser.beans.FilterBean
-
Set the filters for the bean.
- setFormLocation(String) - Method in class org.htmlparser.tags.FormTag
-
Set the form location.
- setFrameLocation(String) - Method in class org.htmlparser.tags.FrameTag
-
Sets the location of the frame.
- setFrames(NodeList) - Method in class org.htmlparser.tags.FrameSetTag
-
Sets the frames (children of this tag).
- setHistoryListVisible(boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Sets the history list visibility.
- setHttpEquiv(String) - Method in class org.htmlparser.tags.MetaTag
-
Set the HTTP-EQUIV
attribute.
- setImage(Image) - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Setter for property image.
- setImageURL(String) - Method in class org.htmlparser.tags.ImageTag
-
Set the SRC
attribute.
- setInputHTML(String) - Method in class org.htmlparser.Parser
-
Initializes the parser with the given input HTML String.
- setJavascriptLink(boolean) - Method in class org.htmlparser.tags.LinkTag
-
Set the link as a javascript link.
- setLanguage(String) - Method in class org.htmlparser.tags.ScriptTag
-
Set the language of the script tag.
- setLexer(Lexer) - Method in class org.htmlparser.Parser
-
Set the lexer for this parser.
- setLink(String) - Method in class org.htmlparser.tags.LinkTag
-
Set the HREF
attribute.
- setLinks(boolean) - Method in class org.htmlparser.beans.HTMLTextBean
-
Setter for property links.
- setLinks(boolean) - Method in class org.htmlparser.beans.StringBean
-
Set the 'include links' state.
- setLocale(Locale) - Method in class org.htmlparser.filters.StringFilter
-
Set the locale for uppercase conversion.
- setMailLink(boolean) - Method in class org.htmlparser.tags.LinkTag
-
Insert the method's description here.
- setMatchClass(Class) - Method in class org.htmlparser.filters.NodeClassFilter
-
Set the class to match.
- setMetaTagContents(String) - Method in class org.htmlparser.tags.MetaTag
-
Set the CONTENT
attribute.
- setMetaTagName(String) - Method in class org.htmlparser.tags.MetaTag
-
Set the NAME
attribute.
- setMonitor(ConnectionMonitor) - Method in class org.htmlparser.http.ConnectionManager
-
Set the monitoring object.
- setName(String) - Method in class org.htmlparser.Attribute
-
Set the name of this attribute.
- setName(String) - Method in class org.htmlparser.filters.TagNameFilter
-
Set the tag name.
- setNameEndPosition(int) - Method in class org.htmlparser.lexer.PageAttribute
-
Set the ending position of the attribute name.
- setNameStartPosition(int) - Method in class org.htmlparser.lexer.PageAttribute
-
Set the starting position of the attribute name.
- setNodeFactory(NodeFactory) - Method in class org.htmlparser.lexer.Lexer
-
Set the current node factory.
- setNodeFactory(NodeFactory) - Method in class org.htmlparser.Parser
-
Set the current node factory.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodeFilter(NodeFilter, Parser) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Assign the underlying node filter for this wrapper.
- setNodes() - Method in class org.htmlparser.beans.FilterBean
-
Fetch the URL contents and filter it.
- setObjectClassId(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the CLASSID attribute.
- setObjectCodeBase(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the CODEBASE attribute.
- setObjectCodeType(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the CODETYPE attribute.
- setObjectData(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the DATA attribute.
- setObjectHeight(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the HEIGHT attribute.
- setObjectParams(Hashtable) - Method in class org.htmlparser.tags.ObjectTag
-
Set the enclosed PARAM children.
- setObjectStandby(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the STANDBY attribute.
- setObjectType(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the TYPE attribute.
- setObjectWidth(String) - Method in class org.htmlparser.tags.ObjectTag
-
Set the WIDTH attribute.
- setOrigin(Point) - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Setter for property origin.
- setPage(Page) - Method in class org.htmlparser.lexer.Lexer
-
Set the page this lexer is working on.
- setPage(Page) - Method in class org.htmlparser.lexer.PageAttribute
-
Set the page this attribute is anchored to.
- setPage(Page) - Method in interface org.htmlparser.Node
-
Set the page this node came from.
- setPage(Page) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Set the page this node came from.
- setPage(Page) - Method in class org.htmlparser.nodes.AbstractNode
-
Set the page this node came from.
- setParent(Node) - Method in interface org.htmlparser.Node
-
Sets the parent of this node.
- setParent(Node) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- setParent(Node) - Method in class org.htmlparser.nodes.AbstractNode
-
Sets the parent of this node.
- setParentFilter(NodeFilter) - Method in class org.htmlparser.filters.HasParentFilter
-
Set the filter for this HasParentFilter.
- setParser(Parser) - Method in class org.htmlparser.beans.FilterBean
-
Set the parser for the bean.
- setParserFeedback(ParserFeedback) - Static method in class org.htmlparser.util.FeedbackManager
-
- setPassword(String) - Method in class org.htmlparser.http.ConnectionManager
-
Set the URL users's password.
- setPath(String) - Method in class org.htmlparser.http.Cookie
-
This cookie should be presented only with requests beginning with this
URL.
- setPattern(String) - Method in class org.htmlparser.filters.RegexFilter
-
Set the search pattern.
- setPattern(String) - Method in class org.htmlparser.filters.StringFilter
-
Set the search pattern.
- setPosition(int) - Method in class org.htmlparser.lexer.Cursor
-
Set the position of this cursor.
- setPosition(int) - Method in class org.htmlparser.lexer.Lexer
-
Set the current cursor position.
- setPredicate(NodeFilter) - Method in class org.htmlparser.filters.NotFilter
-
Set the predicate for this NotFilter.
- setPredicates(NodeFilter[]) - Method in class org.htmlparser.filters.AndFilter
-
Set the predicates for this AndFilter.
- setPredicates(NodeFilter[]) - Method in class org.htmlparser.filters.OrFilter
-
Set the predicates for this OrFilter.
- setPreferredSize(Dimension) - Method in class org.htmlparser.lexerapplications.thumbelina.PicturePanel
-
Sets the preferred size of this component.
- setProperty(String, Object) - Method in class org.htmlparser.sax.XMLReader
-
Set the value of a property.
- setProxyHost(String) - Method in class org.htmlparser.http.ConnectionManager
-
Set the proxy host to use.
- setProxyPassword(String) - Method in class org.htmlparser.http.ConnectionManager
-
Get the proxy user's password.
- setProxyPort(int) - Method in class org.htmlparser.http.ConnectionManager
-
Set the proxy port number.
- setProxyUser(String) - Method in class org.htmlparser.http.ConnectionManager
-
Set the user name for proxy authorization.
- setQuote(char) - Method in class org.htmlparser.Attribute
-
Set the quote surrounding the value of the attribute.
- setRawValue(String) - Method in class org.htmlparser.Attribute
-
Set the value of the attribute and the quote character.
- setRecursive(boolean) - Method in class org.htmlparser.filters.HasChildFilter
-
Sets whether the filter is recursive or not.
- setRecursive(boolean) - Method in class org.htmlparser.filters.HasParentFilter
-
Sets whether the filter is recursive or not.
- setRemarkPrototype(Remark) - Method in class org.htmlparser.PrototypicalNodeFactory
-
Set the object to be used to generate remark nodes.
- setRemoveEscapes(boolean) - Method in class org.htmlparser.StringNodeFactory
-
Deprecated.
Set the escape removing state.
- setReplaceNonBreakingSpaces(boolean) - Method in class org.htmlparser.beans.HTMLTextBean
-
Set the 'replace non breaking spaces' state.
- setReplaceNonBreakingSpaces(boolean) - Method in class org.htmlparser.beans.StringBean
-
Set the 'replace non breaking spaces' state.
- setRequestProperties(Hashtable) - Method in class org.htmlparser.http.ConnectionManager
-
Set the current request properties.
- setScriptCode(String) - Method in class org.htmlparser.tags.ScriptTag
-
Set the code contents.
- setSecure(boolean) - Method in class org.htmlparser.http.Cookie
-
Indicates to the user agent that the cookie should only be sent using a
secure protocol (https).
- setSelected(boolean) - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Set the 'selected look' for the component.
- setSelected(boolean) - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Set the 'selected look' for the component.
- setSequencerActive(boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Sets the sequencer activity state.
- setSiblingFilter(NodeFilter) - Method in class org.htmlparser.filters.HasSiblingFilter
-
Set the filter for this HasSiblingFilter.
- setSource(String) - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Setter for property source.
- setSpeed(int) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Set the sequencer delay time.
- setStartPosition(int) - Method in interface org.htmlparser.Node
-
Sets the starting position of the node.
- setStartPosition(int) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
Sets the starting position of the node.
- setStartPosition(int) - Method in class org.htmlparser.nodes.AbstractNode
-
Sets the starting position of the node.
- setStatusBarVisible(boolean) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Sets the status bar visibility.
- setStrategy(int) - Method in class org.htmlparser.filters.RegexFilter
-
Set the search pattern.
- setStrings() - Method in class org.htmlparser.beans.StringBean
-
Fetch the URL contents.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setSubNodeFilters(NodeFilter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Assign the underlying node filter's subordinate filters.
- setTagBegin(int) - Method in class org.htmlparser.nodes.TagNode
-
Sets the nodeBegin.
- setTagEnd(int) - Method in class org.htmlparser.nodes.TagNode
-
Sets the nodeEnd.
- setTagName(String) - Method in class org.htmlparser.nodes.TagNode
-
Set the name of this tag.
- setTagName(String) - Method in interface org.htmlparser.Tag
-
Set the name of this tag.
- setTagPrototype(Tag) - Method in class org.htmlparser.PrototypicalNodeFactory
-
Set the object to be used to generate tag nodes.
- setTarget(String) - Method in class org.htmlparser.parserapplications.SiteCapturer
-
Setter for property target.
- setText(String) - Method in interface org.htmlparser.Node
-
Sets the string contents of the node.
- setText(String) - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- setText(String) - Method in class org.htmlparser.nodes.AbstractNode
-
Sets the string contents of the node.
- setText(String) - Method in class org.htmlparser.nodes.RemarkNode
-
Sets the string contents of the node.
- setText(String) - Method in class org.htmlparser.nodes.TagNode
-
Parses the given text to create the tag contents.
- setText(String) - Method in class org.htmlparser.nodes.TextNode
-
Sets the string contents of the node.
- setText(String) - Method in interface org.htmlparser.Remark
-
Sets the string contents of the node.
- setText(String) - Method in interface org.htmlparser.Text
-
Sets the contents of the node.
- setTextPrototype(Text) - Method in class org.htmlparser.PrototypicalNodeFactory
-
Set the object to be used to generate text nodes.
- setThisScanner(Scanner) - Method in class org.htmlparser.nodes.TagNode
-
Set the scanner associated with this tag.
- setThisScanner(Scanner) - Method in interface org.htmlparser.Tag
-
Set the scanner associated with this tag.
- setTitle(String) - Method in class org.htmlparser.visitors.HtmlPage
-
- setType(String) - Method in class org.htmlparser.tags.ScriptTag
-
Set the mime type of the script tag.
- setupDropTargets(Filter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Set up drop targets.
- setupMouseListeners(Filter[]) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Set up mouse listeners.
- setUpperPattern() - Method in class org.htmlparser.filters.StringFilter
-
Set the real (upper case) comparison string.
- setURL(String) - Method in class org.htmlparser.beans.BeanyBaby
-
Set the URL for the bean.
- setURL(String) - Method in class org.htmlparser.beans.FilterBean
-
Set the URL to extract strings from.
- setURL(String) - Method in class org.htmlparser.beans.HTMLLinkBean
-
Setter for property URL.
- setURL(String) - Method in class org.htmlparser.beans.HTMLTextBean
-
Setter for property URL.
- setURL(String) - Method in class org.htmlparser.beans.LinkBean
-
Setter for property URL.
- setURL(String) - Method in class org.htmlparser.beans.StringBean
-
Set the URL to extract strings from.
- setUrl(String) - Method in class org.htmlparser.lexer.Page
-
Set the URL for this page.
- setURL(URL) - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Setter for property URL.
- setURL(String) - Method in class org.htmlparser.Parser
-
Set the URL for this parser.
- setUser(String) - Method in class org.htmlparser.http.ConnectionManager
-
Set the user name to access the URL.
- setValue(String) - Method in class org.htmlparser.Attribute
-
Set the value of the attribute.
- setValue(String) - Method in class org.htmlparser.http.Cookie
-
Sets the value of the cookie.
- setValue(String) - Method in class org.htmlparser.tags.OptionTag
-
Set the value of the value attribute.
- setValueEndPosition(int) - Method in class org.htmlparser.lexer.PageAttribute
-
Set the ending position of the attribute value.
- setValueStartPosition(int) - Method in class org.htmlparser.lexer.PageAttribute
-
Set the starting position of the attribute value.
- setVersion(int) - Method in class org.htmlparser.http.Cookie
-
Sets the version of the cookie protocol used when this cookie saves
itself.
- shouldRecurseChildren() - Method in class org.htmlparser.visitors.NodeVisitor
-
Depth traversal predicate.
- shouldRecurseSelf() - Method in class org.htmlparser.visitors.NodeVisitor
-
Self traversal predicate.
- showContextMenu(MouseEvent) - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
Show a pop up context menu.
- SimpleNodeIterator - Interface in org.htmlparser.util
-
The HTMLSimpleEnumeration interface is similar to NodeIterator,
except that it does not throw exceptions.
- SiteCapturer - Class in org.htmlparser.parserapplications
-
Save a web site locally.
- SiteCapturer() - Constructor for class org.htmlparser.parserapplications.SiteCapturer
-
Create a web site capturer.
- size() - Method in class org.htmlparser.lexer.PageIndex
-
Get the count of elements.
- size() - Method in class org.htmlparser.util.NodeList
-
- skip(long) - Method in class org.htmlparser.lexer.InputStreamSource
-
Skip characters.
- skip(long) - Method in class org.htmlparser.lexer.Source
-
Skip characters.
- skip(long) - Method in class org.htmlparser.lexer.StringSource
-
Skip characters.
- Sort - Class in org.htmlparser.util.sort
-
A quick sort algorithm to sort Vectors or arrays.
- Sortable - Interface in org.htmlparser.util.sort
-
Provides a mechanism to abstract the sort process.
- Source - Class in org.htmlparser.lexer
-
A buffered source of characters.
- Source() - Constructor for class org.htmlparser.lexer.Source
-
- spaces(StringBuffer, int) - Static method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Append count spaces to the buffer.
- Span - Class in org.htmlparser.tags
-
A span tag.
- Span() - Constructor for class org.htmlparser.tags.Span
-
Create a new span tag.
- SpecialHashtable - Class in org.htmlparser.util
-
Acts like a regular HashTable, except some values are translated in get(String).
- SpecialHashtable() - Constructor for class org.htmlparser.util.SpecialHashtable
-
Constructs a new, empty hashtable with a default initial capacity (11)
and load factor, which is 0.75.
- SpecialHashtable(int) - Constructor for class org.htmlparser.util.SpecialHashtable
-
Constructs a new, empty hashtable with the specified initial capacity
and default load factor, which is 0.75.
- SpecialHashtable(int, float) - Constructor for class org.htmlparser.util.SpecialHashtable
-
Constructs a new, empty hashtable with the specified initial capacity
and the specified load factor.
- splitButChars(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string considering as string separator
all the characters
with the only exception of the characters specified in charsDoNotBeRemoved param.
- splitButDigits(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string considering as string separator
all the not numerical characters
with the only exception of the characters specified in charsDoNotBeRemoved param.
- splitChars(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string considering as string separator
the chars specified in the input variable charsToBeRemoved.
- splitSpaces(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string considering as string separator
all the spaces and tabs like chars and
the chars specified in the input variable charsToBeRemoved.
- splitTags(String, String[]) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string in a string array,
considering the tags as delimiter for splitting.
- splitTags(String, String[], boolean, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string in a string array,
considering the tags as delimiter for splitting.
- splitTags(String, Class) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string in a string array,
considering the tags as delimiter for splitting.
- splitTags(String, Class, boolean, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string in a string array,
considering the tags as delimiter for splitting.
- splitTags(String, NodeFilter) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string in a string array,
considering the tags as delimiter for splitting.
- splitTags(String, NodeFilter, boolean, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Split the input string in a string array,
considering the tags as delimiter for splitting.
- STATE_CHECKSUM - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State when reading the checksum.
- STATE_DECODE - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State while decoding.
- STATE_DONE - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
Termination state.
- STATE_ESCAPE - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State when reading an escape sequence.
- STATE_FINAL - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State while exiting.
- STATE_INITIAL - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State on entry.
- STATE_LENGTH - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State while reading the encoded length.
- STATE_PREFIX - Static variable in class org.htmlparser.scanners.ScriptDecoder
-
State when reading up to decoded text.
- stateChanged(ChangeEvent) - Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Handles the speed slider events.
- STDOUT - Static variable in class org.htmlparser.Parser
-
A verbose message sink.
- strategyToIndex(int) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Convert the regex strategy to an index into the map.
- strategyToString(int) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Convert the regex strategy to a string.
- Stream - Class in org.htmlparser.lexer
-
Provides for asynchronous fetching from a stream.
- Stream(InputStream) - Constructor for class org.htmlparser.lexer.Stream
-
Construct a stream with no assumptions about the number of bytes available.
- Stream(InputStream, int) - Constructor for class org.htmlparser.lexer.Stream
-
Construct a stream to read the given number of bytes.
- STRICT - Static variable in class org.htmlparser.scanners.ScriptScanner
-
Strict parsing of CDATA flag.
- StringBean - Class in org.htmlparser.beans
-
Extract strings from a URL.
- StringBean() - Constructor for class org.htmlparser.beans.StringBean
-
Create a StringBean object.
- StringExtractor - Class in org.htmlparser.parserapplications
-
Extract plaintext strings from a web page.
- StringExtractor(String) - Constructor for class org.htmlparser.parserapplications.StringExtractor
-
Construct a StringExtractor to read from the given resource.
- StringFilter - Class in org.htmlparser.filters
-
This class accepts all string nodes containing the given string.
- StringFilter() - Constructor for class org.htmlparser.filters.StringFilter
-
Creates a new instance of StringFilter that accepts all string nodes.
- StringFilter(String) - Constructor for class org.htmlparser.filters.StringFilter
-
Creates a StringFilter that accepts text nodes containing a string.
- StringFilter(String, boolean) - Constructor for class org.htmlparser.filters.StringFilter
-
Creates a StringFilter that accepts text nodes containing a string.
- StringFilter(String, boolean, Locale) - Constructor for class org.htmlparser.filters.StringFilter
-
Creates a StringFilter that accepts text nodes containing a string.
- StringFilterWrapper - Class in org.htmlparser.parserapplications.filterbuilder.wrappers
-
Wrapper for StringFilters.
- StringFilterWrapper() - Constructor for class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Create a wrapper over a new StringFilter.
- StringFindingVisitor - Class in org.htmlparser.visitors
-
- StringFindingVisitor(String) - Constructor for class org.htmlparser.visitors.StringFindingVisitor
-
- StringFindingVisitor(String, Locale) - Constructor for class org.htmlparser.visitors.StringFindingVisitor
-
- stringFoundCount() - Method in class org.htmlparser.visitors.StringFindingVisitor
-
- StringNodeFactory - Class in org.htmlparser
-
Deprecated.
Use PrototypicalNodeFactory#setTextPrototype(Text)
A more efficient implementation of affecting all string nodes, is to replace
the Text node prototype in the PrototypicalNodeFactory
with a
custom TextNode that performs the required operation.
For example, if you were using:
StringNodeFactory factory = new StringNodeFactory();
factory.setDecode(true);
to decode all text issued from
Text.toPlainTextString()
,
you would instead create a subclass of
TextNode
and set it as the prototype for text node generation:
PrototypicalNodeFactory factory = new PrototypicalNodeFactory ();
factory.setTextPrototype (new TextNode () {
public String toPlainTextString()
{
return (org.htmlparser.util.Translate.decode (super.toPlainTextString ()));
}
});
Similar constructs apply to removing escapes and converting non-breaking
spaces, which were the examples previously provided.
Using a subclass avoids the wrapping and delegation inherent in the
decorator pattern, with subsequent improvements in processing speed
and memory usage.
- StringNodeFactory() - Constructor for class org.htmlparser.StringNodeFactory
-
Deprecated.
- StringSource - Class in org.htmlparser.lexer
-
A source of characters based on a String.
- StringSource(String) - Constructor for class org.htmlparser.lexer.StringSource
-
Construct a source using the provided string.
- StringSource(String, String) - Constructor for class org.htmlparser.lexer.StringSource
-
Construct a source using the provided string and encoding.
- stringToStrategy(String) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Convert a string to a regex strategy.
- stringWasFound() - Method in class org.htmlparser.visitors.StringFindingVisitor
-
- stripQuotes(String) - Method in class org.htmlparser.util.LinkProcessor
-
Deprecated.
Remove double or single quotes from the string.
- StyleScanner - Class in org.htmlparser.scanners
-
The StyleScanner handles style elements.
- StyleScanner() - Constructor for class org.htmlparser.scanners.StyleScanner
-
Create a style scanner.
- StyleTag - Class in org.htmlparser.tags
-
A StyleTag represents a <style> tag.
- StyleTag() - Constructor for class org.htmlparser.tags.StyleTag
-
Create a new style tag.
- SubFilterList - Class in org.htmlparser.parserapplications.filterbuilder
-
A helper class for lists of filters within filters.
- SubFilterList(Filter, String, int) - Constructor for class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Creates a container panel.
- swap(int, int) - Method in class org.htmlparser.lexer.PageIndex
-
Swaps the elements at the given indicies.
- swap(int, int) - Method in interface org.htmlparser.util.sort.Sortable
-
Swaps the elements at the given indicies.
- synchronous - Variable in class org.htmlparser.lexer.Stream
-
The number of synchronous (blocking) fills.
- Tabby - Class in org.htmlparser.lexerapplications.tabby
-
Replace tabs with spaces.
- Tabby() - Constructor for class org.htmlparser.lexerapplications.tabby.Tabby
-
Creates a new instance of Tabby with no file filter and a tab stop of 4.
- Tabby(String) - Constructor for class org.htmlparser.lexerapplications.tabby.Tabby
-
Creates a new instance of Tabby using the given regular expression and
a tab stop of 4.
- Tabby(String, int) - Constructor for class org.htmlparser.lexerapplications.tabby.Tabby
-
Creates a new instance of Tabby.
- TableColumn - Class in org.htmlparser.tags
-
A table column tag.
- TableColumn() - Constructor for class org.htmlparser.tags.TableColumn
-
Create a new table column tag.
- TableHeader - Class in org.htmlparser.tags
-
A table header tag.
- TableHeader() - Constructor for class org.htmlparser.tags.TableHeader
-
Create a new table header tag.
- TableRow - Class in org.htmlparser.tags
-
A table row tag.
- TableRow() - Constructor for class org.htmlparser.tags.TableRow
-
Create a new table row tag.
- TableTag - Class in org.htmlparser.tags
-
A table tag.
- TableTag() - Constructor for class org.htmlparser.tags.TableTag
-
Create a new table tag.
- Tag - Interface in org.htmlparser
-
This interface represents a tag (<xxx yyy="zzz">) in the HTML document.
- TagFindingVisitor - Class in org.htmlparser.visitors
-
- TagFindingVisitor(String[]) - Constructor for class org.htmlparser.visitors.TagFindingVisitor
-
- TagFindingVisitor(String[], boolean) - Constructor for class org.htmlparser.visitors.TagFindingVisitor
-
- TAGNAME - Static variable in class org.htmlparser.util.SpecialHashtable
-
Special key for the tag name.
- TagNameFilter - Class in org.htmlparser.filters
-
This class accepts all tags matching the tag name.
- TagNameFilter() - Constructor for class org.htmlparser.filters.TagNameFilter
-
Creates a new instance of TagNameFilter.
- TagNameFilter(String) - Constructor for class org.htmlparser.filters.TagNameFilter
-
Creates a TagNameFilter that accepts tags with the given name.
- TagNameFilterWrapper - Class in org.htmlparser.parserapplications.filterbuilder.wrappers
-
Wrapper for TagNameFilters.
- TagNameFilterWrapper() - Constructor for class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Create a wrapper over a new TagNameFilter.
- TagNode - Class in org.htmlparser.nodes
-
TagNode represents a generic tag.
- TagNode() - Constructor for class org.htmlparser.nodes.TagNode
-
Create an empty tag.
- TagNode(Page, int, int, Vector) - Constructor for class org.htmlparser.nodes.TagNode
-
Create a tag with the location and attributes provided
- TagNode(TagNode, TagScanner) - Constructor for class org.htmlparser.nodes.TagNode
-
Create a tag like the one provided.
- TagScanner - Class in org.htmlparser.scanners
-
TagScanner is an abstract superclass, subclassed to create specific scanners.
- TagScanner() - Constructor for class org.htmlparser.scanners.TagScanner
-
Create a (non-composite) tag scanner.
- Text - Interface in org.htmlparser
-
This interface represents a piece of the content of the HTML document.
- TextareaTag - Class in org.htmlparser.tags
-
A text area tag within a form.
- TextareaTag() - Constructor for class org.htmlparser.tags.TextareaTag
-
Create a new text area tag.
- TextExtractingVisitor - Class in org.htmlparser.visitors
-
Extracts text from a web page.
- TextExtractingVisitor() - Constructor for class org.htmlparser.visitors.TextExtractingVisitor
-
- TextNode - Class in org.htmlparser.nodes
-
Normal text in the HTML document is represented by this class.
- TextNode(String) - Constructor for class org.htmlparser.nodes.TextNode
-
Constructor takes in the text string.
- TextNode(Page, int, int) - Constructor for class org.htmlparser.nodes.TextNode
-
Constructor takes in the page and beginning and ending posns.
- throwable - Variable in exception org.htmlparser.util.ChainedException
-
- Thumbelina - Class in org.htmlparser.lexerapplications.thumbelina
-
View images behind thumbnails.
- Thumbelina() - Constructor for class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Creates a new instance of Thumbelina.
- Thumbelina(String) - Constructor for class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Creates a new instance of Thumbelina.
- Thumbelina(URL) - Constructor for class org.htmlparser.lexerapplications.thumbelina.Thumbelina
-
Creates a new instance of Thumbelina.
- ThumbelinaFrame - Class in org.htmlparser.lexerapplications.thumbelina
-
Encapsulate a Thumbelina bean and add menu and preferences support.
- ThumbelinaFrame() - Constructor for class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Construct a new Thumbelina frame with an idle Thumbelina.
- ThumbelinaFrame(String) - Constructor for class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Construct a new Thumbelina frame with a Thumbelina primed with one URL.
- ThumbelinaFrame(URL) - Constructor for class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Construct a new Thumbelina frame with a Thumbelina primed with one URL.
- ThumbelinaFrame(Thumbelina) - Constructor for class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Construct a new Thumbelina frame with a given Thumbelina.
- TileSet - Class in org.htmlparser.lexerapplications.thumbelina
-
Class to track picture regions.
- TileSet() - Constructor for class org.htmlparser.lexerapplications.thumbelina.TileSet
-
Construct a tile set.
- TitleTag - Class in org.htmlparser.tags
-
A title tag.
- TitleTag() - Constructor for class org.htmlparser.tags.TitleTag
-
Create a new title tag.
- toHtml() - Method in interface org.htmlparser.Node
-
Return the HTML for this node.
- toHtml() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- toHtml() - Method in class org.htmlparser.nodes.AbstractNode
-
Return the HTML that generated this node.
- toHtml() - Method in class org.htmlparser.nodes.RemarkNode
-
Return The full HTML remark.
- toHtml() - Method in class org.htmlparser.nodes.TagNode
-
Render the tag as HTML.
- toHtml() - Method in class org.htmlparser.nodes.TextNode
-
Returns the text of the node.
- toHtml(TagNode) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeCellRenderer
-
Render the tag as HTML.
- toHtml() - Method in class org.htmlparser.tags.CompositeTag
-
Return this tag as HTML code.
- toHtml() - Method in class org.htmlparser.util.NodeList
-
Convert this nodelist into the equivalent HTML.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.AndFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasAttributeFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasChildFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasParentFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.HasSiblingFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NodeClassFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.NotFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.OrFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.RegexFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.StringFilterWrapper
-
Convert this filter into Java code.
- toJavaCode(StringBuffer, int[]) - Method in class org.htmlparser.parserapplications.filterbuilder.wrappers.TagNameFilterWrapper
-
Convert this filter into Java code.
- toNodeArray() - Method in class org.htmlparser.util.NodeList
-
- toPlainTextString() - Method in interface org.htmlparser.Node
-
A string representation of the node.
- toPlainTextString() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- toPlainTextString() - Method in class org.htmlparser.nodeDecorators.DecodingNode
-
Deprecated.
- toPlainTextString() - Method in class org.htmlparser.nodeDecorators.EscapeCharacterRemovingNode
-
Deprecated.
- toPlainTextString() - Method in class org.htmlparser.nodeDecorators.NonBreakingSpaceConvertingNode
-
Deprecated.
- toPlainTextString() - Method in class org.htmlparser.nodes.AbstractNode
-
Returns a string representation of the node.
- toPlainTextString() - Method in class org.htmlparser.nodes.RemarkNode
-
Return the remark text.
- toPlainTextString() - Method in class org.htmlparser.nodes.TagNode
-
Get the plain text from this node.
- toPlainTextString() - Method in class org.htmlparser.nodes.TextNode
-
Returns the text of the node.
- toPlainTextString() - Method in class org.htmlparser.tags.CompositeTag
-
Return the textual contents of this tag and it's children.
- toString() - Method in class org.htmlparser.Attribute
-
Get a text representation of this attribute.
- toString(StringBuffer) - Method in class org.htmlparser.Attribute
-
Get a text representation of this attribute.
- toString() - Method in class org.htmlparser.http.Cookie
-
Convert this cookie into a user friendly string.
- toString() - Method in class org.htmlparser.lexer.Cursor
-
Return a string representation of this cursor
- toString() - Method in class org.htmlparser.lexer.Page
-
Display some of this page as a string.
- toString() - Method in class org.htmlparser.lexerapplications.thumbelina.Picture
-
Create a string representation of the picture.
- toString(Rectangle) - Method in class org.htmlparser.lexerapplications.thumbelina.ThumbelinaFrame
-
Converts the rectangle to a string.
- toString() - Method in interface org.htmlparser.Node
-
Return the string representation of the node.
- toString() - Method in class org.htmlparser.nodeDecorators.AbstractNodeDecorator
-
Deprecated.
- toString() - Method in class org.htmlparser.nodes.AbstractNode
-
Return a string representation of the node.
- toString() - Method in class org.htmlparser.nodes.RemarkNode
-
Print the contents of the remark tag.
- toString() - Method in class org.htmlparser.nodes.TagNode
-
Print the contents of the tag.
- toString() - Method in class org.htmlparser.nodes.TextNode
-
Express this string node as a printable string
This is suitable for display in a debugger or output to a printout.
- toString() - Method in class org.htmlparser.parserapplications.filterbuilder.Filter
-
Returns a string representation of this component and its values.
- toString(int, int) - Method in class org.htmlparser.parserapplications.filterbuilder.SubFilterList
-
Get the bytes for this command as a String.
- toString() - Method in class org.htmlparser.tags.AppletTag
-
Output a string representing this applet tag.
- toString() - Method in class org.htmlparser.tags.BodyTag
-
Return a string representation of this BODY
tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.CompositeTag
-
Return a string representation of the contents of this tag, it's children and it's end tag suitable for debugging.
- toString(int, StringBuffer) - Method in class org.htmlparser.tags.CompositeTag
-
Return a string representation of the contents of this tag, it's children and it's end tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.DoctypeTag
-
Return a string representation of the contents of this !DOCTYPE
tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.FormTag
-
Return a string representation of the contents of this FORM
tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.FrameSetTag
-
Return a string representation of the contents of this FRAMESET
tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.FrameTag
-
Return a string representation of the contents of this FRAME
tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.HeadTag
-
Returns a string representation of this HEAD
tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.JspTag
-
Returns a string representation of this jsp tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.LabelTag
-
Returns a string representation of this label tag suitable for debugging.
- toString() - Method in class org.htmlparser.tags.LinkTag
-
Return the contents of this link node as a string suitable for debugging.
- toString() - Method in class org.htmlparser.tags.ObjectTag
-
Output a string representing this object tag.
- toString() - Method in class org.htmlparser.tags.OptionTag
-
Return a string representation of this node suitable for debugging.
- toString() - Method in class org.htmlparser.tags.ScriptTag
-
Print the contents of the script tag suitable for debugging display.
- toString() - Method in class org.htmlparser.tags.StyleTag
-
Print the contents of the style node.
- toString() - Method in class org.htmlparser.tags.TableTag
-
Return a string suitable for debugging display.
- toString() - Method in class org.htmlparser.tags.TitleTag
-
Return a string representation of this tag for debugging.
- toString() - Method in class org.htmlparser.util.CharacterReference
-
Visualize this character reference as a string.
- toString() - Method in class org.htmlparser.util.NodeList
-
Return the contents of the list as a string.
- toText(TextNode) - Method in class org.htmlparser.parserapplications.filterbuilder.HtmlTreeCellRenderer
-
Express this string node as a printable string
This is suitable for display in a debugger or output to a printout.
- TRANSFER_SIZE - Variable in class org.htmlparser.parserapplications.SiteCapturer
-
Copy buffer size.
- Translate - Class in org.htmlparser.util
-
Translate numeric character references and character entity references to unicode characters.
- trimAllTags(String, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Trim the input string, removing all the tags in the input string.
- trimButChars(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the input string all the characters
with the only exception of the characters specified in charsDoNotBeRemoved param.
- trimButCharsBeginEnd(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the beginning and the end of the input string all the characters
with the only exception of the characters specified in charsDoNotBeRemoved param.
- trimButDigits(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the input string all the not numerical characters
with the only exception of the characters specified in charsDoNotBeRemoved param.
- trimButDigitsBeginEnd(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the beginning and the end of the input string all the not numerical characters
with the only exception of the characters specified in charsDoNotBeRemoved param.
- trimChars(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the input string all the chars specified in the input variable charsToBeRemoved.
- trimCharsBeginEnd(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the beginning and the end of the input string all the chars specified in the input variable charsToBeRemoved.
- trimSpaces(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the input string all the spaces and tabs like chars.
- trimSpacesBeginEnd(String, String) - Static method in class org.htmlparser.util.ParserUtils
-
Remove from the beginning and the end of the input string all the spaces and tabs like chars.
- trimTags(String, String[]) - Static method in class org.htmlparser.util.ParserUtils
-
Trim all tags in the input string and
return a string like the input one
without the tags and their content.
- trimTags(String, String[], boolean, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Trim all tags in the input string and
return a string like the input one
without the tags and their content (optional).
- trimTags(String, Class) - Static method in class org.htmlparser.util.ParserUtils
-
Trim all tags in the input string and
return a string like the input one
without the tags and their content.
- trimTags(String, Class, boolean, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Trim all tags in the input string and
return a string like the input one
without the tags and their content (optional).
- trimTags(String, NodeFilter) - Static method in class org.htmlparser.util.ParserUtils
-
Trim all tags in the input string and
return a string like the input one
without the tags and their content.
- trimTags(String, NodeFilter, boolean, boolean) - Static method in class org.htmlparser.util.ParserUtils
-
Trim all tags in the input string and
return a string like the input one
without the tags and their content (optional).
- tutorialAction() - Method in class org.htmlparser.parserapplications.filterbuilder.FilterBuilder
-
The action to take when "Tutorial" menu pressed.