Home | History | Annotate | Download | only in stream

Lines Matching refs:Writer

24 import java.io.Writer;
68 * @param writer A valid Writer reference.
70 public StreamResult(Writer writer) {
71 setWriter(writer);
115 * Set the writer that is to receive the result. Normally,
116 * a stream should be used rather than a writer, so that
119 * there are times when it is useful to write to a writer,
122 * @param writer A valid Writer reference.
124 public void setWriter(Writer writer) {
125 this.writer = writer;
132 * if setWriter or the Writer constructor was not called.
134 public Writer getWriter() {
135 return writer;
193 private Writer writer;