| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
InputSourceorg.lobobrowser.html.parser.InputSourceImplpublic class InputSourceImplextends InputSourceInputSourceImpl class implements
the InputSource interface.
Constructor Summary | |
| |
| |
| |
| |
| |
| |
public InputSourceImpl()
Constructs anInputSourceImpl.
public InputSourceImpl(InputStream byteStream)
Deprecated. Use constructor with
uriparameter.Constructs anInputSourceImpl.
- Parameters:
byteStream- The input stream where content can be read.
public InputSourceImpl(InputStream byteStream,
String uri,
String charset)Constructs anInputSourceImpl.
- Parameters:
byteStream- The input stream where content can be read.uri- The URI that identifies the content.charset- The character set of the input stream.
public InputSourceImpl(Reader characterStream)
Deprecated. Use constructor with
uriparameter.Constructs anInputSourceImpl.
- Parameters:
characterStream- TheReaderwhere characters can be read.
public InputSourceImpl(Reader characterStream,
String uri)Constructs anInputSourceImpl.
- Parameters:
characterStream- TheReaderwhere characters can be read.uri- The URI of the document.
public InputSourceImpl(String systemId)
Constructs anInputSourceImpl. Note that the parameter does not represent a string to be parsed. To parse a string, use a StringReader.
- Parameters:
systemId- The system ID of the input source.