Interface | Description |
---|---|
HtmlElement |
This interface represents an instance of some HTML element (or "tag"),
usually obtained by reading from a web page using a
WebBot . |
HtmlHeadingElement |
This interface represents a specialized
HtmlElement that
represents an HTML heading tag--e.g., H1, H2, H3, H4, H5, or H6. |
PersistentMap<T> |
This interface represents a
Map that is persistent, meaning
that its contents will continue to be available from one program run to the
next. |
RssEntity | |
WebBotTask |
This class defines the common interface for all robot task objects.
|
Class | Description |
---|---|
AbstractPersistentMap<T> |
This is an abstract map representing all of the general functionality for
maps that create projections on a particular persistence layer.
|
ApplicationPersistentMap<T> |
This class represents a
PersistentMap whose contents are
shared only by separate executions of a single program. |
RssEntry |
This class represents one entry in a syndication feed, like an
RssFeed . |
RssFeed |
This class represents a syndication feed that contains a list of
RssEntry objects. |
RunWebBotTask |
This class represents a main program that takes a command-line
argument that names a
WebBotTask ; it creates an instance
of the named task and then runs it. |
SessionPersistentMap<T> |
The Session persistence layer represents all of the persisted items
associated with the current web session.
|
SharedPersistentMap<T> |
This class represents a
PersistentMap whose contents are
shared by all users/programs executing in the same context (i.e.,
on the same CloudSpace server, or in the same current working directory
on an end-user machine). |
TurboWebBot |
This advanced WebBot provides additional methods useful for
extracting content from web pages basdon tag type, tag id, CSS class,
or other features.
|
WebBot |
This class represents a robot that knows how to walk through a web
page and identify headings and links.
|
WebBot.PageLocation |
Represents a bot location on a specific web page.
|
WebUtilities |
This class provides static utility methods that streamline some
web-related operations, and also that provide useful services for
CloudSpace-based programs.
|