Package org.loboevolution.html.parser
Class InputSourceImpl
java.lang.Object
org.xml.sax.InputSource
org.loboevolution.html.parser.InputSourceImpl
The InputSourceImpl class implements the
InputSource interface.
Author J. H. S.
-
Constructor Summary
ConstructorDescriptionInputSourceImpl
(InputStream byteStream, String uri, Charset charset) Constructs an InputSourceImpl.InputSourceImpl
(Reader characterStream, String uri) Constructs an InputSourceImpl. -
Method Summary
Methods inherited from class org.xml.sax.InputSource
getByteStream, getCharacterStream, getEncoding, getPublicId, getSystemId, isEmpty, setByteStream, setCharacterStream, setEncoding, setPublicId, setSystemId
-
Constructor Details
-
InputSourceImpl
Constructs an InputSourceImpl.- 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.
-
InputSourceImpl
Constructs an InputSourceImpl.- Parameters:
characterStream
- The Reader where characters can be read.uri
- The URI of the document.
-