Uses of Interface
net.htmlparser.jericho.CharStreamSource

Uses of CharStreamSource in net.htmlparser.jericho
 

Subinterfaces of CharStreamSource in net.htmlparser.jericho
 interface OutputSegment
          Defines the interface for an output segment, which is used in an OutputDocument to replace segments of the source document with other text.
 

Classes in net.htmlparser.jericho that implement CharStreamSource
 class OutputDocument
          Represents a modified version of an original Source document or Segment.
 class Renderer
          Performs a simple rendering of HTML markup into text.
 class SourceCompactor
          Compacts HTML source by removing all unnecessary white space.
 class SourceFormatter
          Formats HTML source by laying out each non-inline-level element on a new line with an appropriate indent.
 class TextExtractor
          Extracts the textual content from HTML markup.
 

Methods in net.htmlparser.jericho with parameters of type CharStreamSource
static java.io.Reader CharStreamSourceUtil.getReader(CharStreamSource charStreamSource)
          Returns a Reader that reads the output of the specified CharStreamSource.
static java.lang.String CharStreamSourceUtil.toString(CharStreamSource charStreamSource)
          Returns the output of the specified CharStreamSource as a string.