Uses of Class
net.htmlparser.jericho.EndTag

Uses of EndTag in net.htmlparser.jericho
 

Methods in net.htmlparser.jericho that return EndTag
protected  EndTag EndTagType.constructEndTag(Source source, int begin, int end, java.lang.String name)
          Internal method for the construction of an EndTag object of this type.
 EndTag Element.getEndTag()
          Returns the end tag of the element.
 EndTag Source.getNextEndTag(int pos)
          Returns the EndTag beginning at or immediately following the specified position in the source document.
 EndTag Source.getNextEndTag(int pos, EndTagType endTagType)
          Returns the EndTag of the specified type beginning at or immediately following the specified position in the source document.
 EndTag Source.getNextEndTag(int pos, java.lang.String name)
          Returns the normal EndTag with the specified name beginning at or immediately following the specified position in the source document.
 EndTag Source.getNextEndTag(int pos, java.lang.String name, EndTagType endTagType)
          Returns the EndTag with the specified name and type beginning at or immediately following the specified position in the source document.
 EndTag Source.getPreviousEndTag(int pos)
          Returns the EndTag at or immediately preceding (or enclosing) the specified position in the source document.
 EndTag Source.getPreviousEndTag(int pos, EndTagType endTagType)
          Returns the EndTag of the specified type at or immediately preceding (or enclosing) the specified position in the source document.
 EndTag Source.getPreviousEndTag(int pos, java.lang.String name)
          Returns the normal EndTag with the specified name at or immediately preceding (or enclosing) the specified position in the source document.