|
|||||||||||
PREV LETTER NEXT LETTER | FRAMES NO FRAMES |
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.
true
if that picture is the same as this one.
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 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.
- 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.
- setAttributeEx(Attribute) -
Method in interface org.htmlparser.Tag
- Set an attribute.
- setAttributeEx(Attribute) -
Method in class org.htmlparser.nodes.TagNode
- Set an attribute.
- setAttributeName(String) -
Method in class org.htmlparser.filters.HasAttributeFilter
- Set the attribute name.
- setAttributeValue(String) -
Method in class org.htmlparser.filters.HasAttributeFilter
- Set the attribute value.
- setAttributes(Hashtable) -
Method in interface org.htmlparser.Tag
- Deprecated. Use setAttributesEx() instead.
- setAttributes(Hashtable) -
Method in class org.htmlparser.nodes.TagNode
- Sets the attributes.
- setAttributesEx(Vector) -
Method in interface org.htmlparser.Tag
- Sets the attributes.
- setAttributesEx(Vector) -
Method in class org.htmlparser.nodes.TagNode
- Sets the attributes.
- 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.Parser
- Set the connection for this parser.
- 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.
- setConnectionManager(ConnectionManager) -
Static method in class org.htmlparser.Parser
- Set the connection manager all Parsers use.
- setConnectionManager(ConnectionManager) -
Static method in class org.htmlparser.lexer.Page
- Set the connection manager to 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.
- setDTDHandler(DTDHandler) -
Method in class org.htmlparser.sax.XMLReader
- Allow an application to register a DTD event handler.
- 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.
- setDocumentId(String) -
Method in class edu.cmu.cs.readweb.text.PatternItem
-
- setDocumentLocator(Locator) -
Method in class org.htmlparser.tests.SAXTest
-
- setDomain(String) -
Method in class org.htmlparser.http.Cookie
- This cookie should be presented only to hosts satisfying this domain name
pattern.
- setEmptyXmlTag(boolean) -
Method in interface org.htmlparser.Tag
- Set this tag to be an empty xml node, or not.
- setEmptyXmlTag(boolean) -
Method in class org.htmlparser.nodes.TagNode
- Set this tag to be an empty xml node, or not.
- setEncoding(String) -
Method in class org.htmlparser.Parser
- Set the encoding for the page this parser is reading from.
- 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.
- 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 interface org.htmlparser.Tag
- Set the end tag for this (composite) tag.
- setEndTag(Tag) -
Method in class org.htmlparser.nodes.TagNode
- 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.Parser
- Set the current node factory.
- setNodeFactory(NodeFactory) -
Method in class org.htmlparser.lexer.Lexer
- 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 interface org.htmlparser.Node
- Set the page this node came from.
- 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 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.
- setParser(Parser) -
Method in class org.htmlparser.tests.ParserTestCase
-
- 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.
- setPatternLeft(SpanItem) -
Method in class edu.cmu.cs.readweb.text.PatternItem
-
- setPatternRight(SpanItem) -
Method in class edu.cmu.cs.readweb.text.PatternItem
-
- 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.beans.FilterBean
- Set the recursion behaviour.
- 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 interface org.htmlparser.Tag
- Set the name of this tag.
- setTagName(String) -
Method in class org.htmlparser.nodes.TagNode
- 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 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.
- 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.
- setTextPrototype(Text) -
Method in class org.htmlparser.PrototypicalNodeFactory
- Set the object to be used to generate text nodes.
- setThisScanner(Scanner) -
Method in interface org.htmlparser.Tag
- Set the scanner associated with this tag.
- setThisScanner(Scanner) -
Method in class org.htmlparser.nodes.TagNode
- 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.
- setURL(String) -
Method in class org.htmlparser.Parser
- Set the URL for this parser.
- 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(URL) -
Method in class org.htmlparser.lexerapplications.thumbelina.Picture
- Setter for property URL.
- setUp() -
Method in class org.htmlparser.tests.InstanceofPerformanceTest
-
- setUp() -
Method in class org.htmlparser.tests.parserHelperTests.CompositeTagScannerHelperTest
-
- setUp() -
Method in class org.htmlparser.tests.tagTests.BodyTagTest
-
- setUp() -
Method in class org.htmlparser.tests.tagTests.OptionTagTest
-
- setUp() -
Method in class org.htmlparser.tests.tagTests.SelectTagTest
-
- setUp() -
Method in class org.htmlparser.tests.tagTests.TextareaTagTest
-
- setUp() -
Method in class org.htmlparser.tests.tagTests.TitleTagTest
-
- setUp() -
Method in class org.htmlparser.tests.utilTests.NodeListTest
-
- setUp() -
Method in class org.htmlparser.tests.visitorsTests.TagFindingVisitorTest
-
- setUpperPattern() -
Method in class org.htmlparser.filters.StringFilter
- Set the real (upper case) comparison string.
- setUrl(String) -
Method in class org.htmlparser.lexer.Page
- Set the URL for this page.
- 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.
- 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.
- sgml(String, PrintWriter) -
Method in class org.htmlparser.tests.utilTests.CharacterTranslationTest.Generate
- Extract special characters.
- 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.
- 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.
- skippedEntity(String) -
Method in class org.htmlparser.tests.SAXTest
-
- spaces(StringBuffer, int) -
Static method in class org.htmlparser.parserapplications.filterbuilder.Filter
- Append count spaces to the buffer.
- 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.
- startDocument() -
Method in class org.htmlparser.tests.SAXTest
-
- startElement(String, String, String, Attributes) -
Method in class org.htmlparser.tests.SAXTest
-
- startPrefixMapping(String, String) -
Method in class org.htmlparser.tests.SAXTest
-
- stateChanged(ChangeEvent) -
Method in class org.htmlparser.lexerapplications.thumbelina.Thumbelina
- Handles the speed slider events.
- 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.
- stringFoundCount() -
Method in class org.htmlparser.visitors.StringFindingVisitor
-
- 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.
- suite() -
Static method in class org.htmlparser.tests.AllTests
-
- suite() -
Static method in class org.htmlparser.tests.AssertXmlEqualsTest
-
- suite() -
Static method in class org.htmlparser.tests.FunctionalTests
-
- suite() -
Static method in class org.htmlparser.tests.LineNumberAssignedByNodeReaderTest
-
- suite() -
Static method in class org.htmlparser.tests.lexerTests.AllTests
-
- suite() -
Static method in class org.htmlparser.tests.nodeDecoratorTests.AllTests
-
- suite() -
Static method in class org.htmlparser.tests.parserHelperTests.AllTests
-
- suite() -
Static method in class org.htmlparser.tests.scannersTests.AllTests
-
- suite() -
Static method in class org.htmlparser.tests.tagTests.AllTests
-
- suite() -
Static method in class org.htmlparser.tests.tagTests.BodyTagTest
-
- suite() -
Static method in class org.htmlparser.tests.utilTests.AllTests
- Insert the method's description here.
- suite() -
Static method in class org.htmlparser.tests.visitorsTests.AllTests
-
- 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.
|
|||||||||||
PREV LETTER NEXT LETTER | FRAMES NO FRAMES |