Uses of Class
net.htmlparser.jericho.Source

Packages that use Source
Package
Description
Jericho HTML Parser 3.3
 
  • Uses of Source in net.htmlparser.jericho

    Methods in net.htmlparser.jericho that return Source
    Modifier and Type
    Method
    Description
    final Source
    Segment.getSource()
    Returns the Source document containing this segment.
    Methods in net.htmlparser.jericho with parameters of type Source
    Modifier and Type
    Method
    Description
    boolean
    StartTagType.atEndOfAttributes(Source source, int pos, boolean isClosingSlashIgnored)
    Indicates whether the specified source document position is at the end of a tag's attributes.
    protected final EndTag
    EndTagType.constructEndTag(Source source, int begin, int end, String name)
    Internal method for the construction of an EndTag object of this type.
    protected final StartTag
    StartTagType.constructStartTag(Source source, int begin, int end, String name, Attributes attributes)
    Internal method for the construction of a StartTag object if this type.
    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.
    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 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 int
    StartTagTypeGenericImplementation.getEnd(Source source, int pos)
    Returns the end of a tag of this type, starting from the specified position in the specified source document.
    protected boolean
    TagType.isValidPosition(Source source, int pos, int[] fullSequentialParseData)
    Indicates whether a tag of this type is valid in the specified position of the specified source document.
    protected final Attributes
    StartTagType.parseAttributes(Source source, int startTagBegin, String tagName)
    Internal method for the parsing of Attributes.
    protected final boolean
    TagType.tagEncloses(Source source, int pos)
    Indicates whether a tag of this type encloses the specified position of the specified source document.
    Constructors in net.htmlparser.jericho with parameters of type Source
    Modifier
    Constructor
    Description
     
    Constructs a new output document based on the specified source document.
     
    Segment(Source source, int begin, int end)
    Constructs a new Segment within the specified source document with the specified begin and end character positions.
  • Uses of Source in net.htmlparser.jericho.nodoc

    Constructors in net.htmlparser.jericho.nodoc with parameters of type Source
    Modifier
    Constructor
    Description
     
    SequentialListSegment(Source source, int begin, int end)