Uses of Class
au.id.jericho.lib.html.Tag

Uses of Tag in au.id.jericho.lib.html
 

Subclasses of Tag in au.id.jericho.lib.html
 class EndTag
          Represents the end tag of an element in a specific source document.
 class StartTag
          Represents the start tag of an element in a specific source document.
 

Methods in au.id.jericho.lib.html that return Tag
protected abstract  Tag TagType.constructTagAt(Source source, int pos)
          Constructs a tag of this type at the specified position in the specified source document if it matches all of the required features.
protected  Tag StartTagTypeGenericImplementation.constructTagAt(Source source, int pos)
          Constructs a tag of this type at the specified position in the specified source document if it matches all of the required features.
protected  Tag EndTagTypeGenericImplementation.constructTagAt(Source source, int pos)
          Constructs a tag of this type at the specified position in the specified source document if it matches all of the required features.
 Tag Source.findEnclosingTag(int pos)
          Returns the Tag that encloses the specified position in the source document.
 Tag Source.findEnclosingTag(int pos, TagType tagType)
          Returns the Tag of the specified type that encloses the specified position in the source document.
 Tag Tag.findNextTag()
          Returns the next tag in the source document.
 Tag Source.findNextTag(int pos)
          Returns the Tag beginning at or immediately following the specified position in the source document.
 Tag Source.findNextTag(int pos, TagType tagType)
          Returns the Tag of the specified type beginning at or immediately following the specified position in the source document.
 Tag Tag.findPreviousTag()
          Returns the previous tag in the source document.
 Tag Source.findPreviousTag(int pos)
          Returns the Tag beginning at or immediately preceding (or enclosing) the specified position in the source document.
 Tag Source.findPreviousTag(int pos, TagType tagType)
          Returns the Tag of the specified type beginning at or immediately preceding (or enclosing) the specified position in the source document.
 Tag[] Source.fullSequentialParse()
          Parses all of the tags in this source document sequentially from beginning to end.
 Tag Source.getTagAt(int pos)
          Returns the Tag at the specified position in the source document.