Home | History | Annotate | Download | only in smack

Lines Matching refs:Writer

13 import java.io.Writer;
38 private Writer writer;
43 public AndroidDebugger(Connection connection, Writer writer, Reader reader) {
45 this.writer = writer;
66 // Create a special Writer that wraps the main Writer and logs data to the GUI.
67 ObservableWriter debugWriter = new ObservableWriter(writer);
78 // Assign the reader/writer objects to use the debug versions. The packet reader
79 // and writer will use the debug versions when they are created.
81 writer = debugWriter;
145 public Writer newConnectionWriter(Writer newWriter) {
146 ((ObservableWriter)writer).removeWriterListener(writerListener);
149 writer = debugWriter;
150 return writer;
173 public Writer getWriter() {
174 return writer;