Home | History | Annotate | Download | only in stream

Lines Matching refs:reader

24 import java.io.Reader;
31 * <p><em>Note:</em> Due to their internal use of either a {@link Reader} or {@link InputStream} instance,
50 * {@link #setReader(java.io.Reader reader)}, then the
61 * a stream should be used rather than a reader, so
77 * a stream should be used rather than a reader, so that
94 * Construct a StreamSource from a character reader. Normally,
95 * a stream should be used rather than a reader, so that
101 * @param reader A valid Reader reference to an XML character stream.
103 public StreamSource(Reader reader) {
104 setReader(reader);
108 * Construct a StreamSource from a character reader. Normally,
109 * a stream should be used rather than a reader, so that
115 * @param reader A valid Reader reference to an XML character stream.
118 public StreamSource(Reader reader, String systemId) {
119 setReader(reader);
143 * a stream should be used rather than a reader, so that
168 * Set the input to be a character reader. Normally,
169 * a stream should be used rather than a reader, so that
175 * @param reader A valid Reader reference to an XML CharacterStream.
177 public void setReader(Reader reader) {
178 this.reader = reader;
185 * if setReader or the Reader constructor was not called.
187 public Reader getReader() {
188 return reader;
271 private Reader reader;