java.lang.Object
org.htmlparser.scanners.TagScanner
org.htmlparser.scanners.CompositeTagScanner
org.htmlparser.scanners.FrameSetScanner
- All Implemented Interfaces:
- java.io.Serializable
- public class FrameSetScanner
- extends CompositeTagScanner
Scans for the Frame Tag. This is a subclass of TagScanner, and is called
using a variant of the template method. If the evaluate() method returns
true, that means the given string contains an image tag. Extraction is done
by the scan method thereafter by the user of this class.
| Methods inherited from class org.htmlparser.scanners.TagScanner |
absorb, absorbLeadingBlanks, adjustScanners, createScannedNode, createTag, evaluate, extractXMLData, getFilter, getInsertedEndTag, getReplacedEndTag, insertEndTagBeforeNode, isXMLTagFound, removeChars, replaceFaultyTagWithEndTag, restoreScanners, setFeedback |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MATCH_NAME
private static final java.lang.String[] MATCH_NAME
FrameSetScanner
public FrameSetScanner()
FrameSetScanner
public FrameSetScanner(java.lang.String filter)
getID
public java.lang.String[] getID()
- Specified by:
getID in class TagScanner
createTag
public org.htmlparser.tags.Tag createTag(org.htmlparser.tags.data.TagData tagData,
org.htmlparser.tags.data.CompositeTagData compositeTagData)
- Description copied from class:
CompositeTagScanner
- You must override this method to create the tag of your choice upon
successful parsing. Data required for construction of your tag can be
found within tagData and compositeTagData
- Specified by:
createTag in class CompositeTagScanner