Lines Matching full:writer
24 import java.io.Writer;
186 * The Writer which is used for the {@see debugger}.
188 protected Writer writer;
755 * @throws IllegalStateException if the reader or writer isn't yet initialized.
759 if (reader == null || writer == null) {
760 throw new NullPointerException("Reader or writer isn't initialized.");
803 .getConstructor(Connection.class, Writer.class, Reader.class);
804 debugger = (SmackDebugger) constructor.newInstance(this, writer, reader);
806 writer = debugger.getWriter();
813 // Obtain new reader and writer from the existing debugger
815 writer = debugger.newConnectionWriter(writer);