Uses of Interface
au.id.jericho.lib.html.CharStreamSource

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

Subinterfaces of CharStreamSource in au.id.jericho.lib.html
 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 au.id.jericho.lib.html that implement CharStreamSource
 class OutputDocument
          Represents a modified version of an original Source document.
 class Renderer
          Performs a simple rendering of HTML markup into text.
 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 au.id.jericho.lib.html that return CharStreamSource
 CharStreamSource Source.indent(java.lang.String indentString, boolean tidyTags, boolean collapseWhiteSpace, boolean indentAllElements)
          Deprecated. Use Source.getSourceFormatter().setIndentString(indentString).setTidyTags(tidyTags).setCollapseWhiteSpace(collapseWhiteSpace).setIndentAllElements(indentAllElements) instead.
 

Methods in au.id.jericho.lib.html 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.