Lines Matching refs:reader
56 * {@link #setReader(java.io.Reader reader)}, then the
67 * a stream should be used rather than a reader, so
83 * a stream should be used rather than a reader, so that
100 * Construct a StreamSource from a character reader. Normally,
101 * a stream should be used rather than a reader, so that
107 * @param reader A valid Reader reference to an XML character stream.
109 public StreamSource(Reader reader) {
110 setReader(reader);
114 * Construct a StreamSource from a character reader. Normally,
115 * a stream should be used rather than a reader, so that
121 * @param reader A valid Reader reference to an XML character stream.
124 public StreamSource(Reader reader, String systemId) {
125 setReader(reader);
152 * a stream should be used rather than a reader, so that
177 * Set the input to be a character reader. Normally,
178 * a stream should be used rather than a reader, so that
184 * @param reader A valid Reader reference to an XML CharacterStream.
186 public void setReader(Reader reader) {
187 this.reader = reader;
197 return reader;
283 private Reader reader;