Uses of Class
edu.rice.cs.plt.io.DirectWriter

Packages that use DirectWriter
edu.rice.cs.plt.io Provides extensions to the java.io package, which provides character- and byte- based streams and buffers, files, file filters, and serialization. 
 

Uses of DirectWriter in edu.rice.cs.plt.io
 

Subclasses of DirectWriter in edu.rice.cs.plt.io
 class VoidWriter
          A Writer that discards all data written to it.
 class WrappedDirectWriter
          An implementation of DirectWriter that inherits that class's default implementations and delegates all other operations to the wrapped Writer.
 class WriterSplitter
          A writer that allows sending the same data to an arbitrary number of writers.
 

Methods in edu.rice.cs.plt.io that return DirectWriter
static DirectWriter WrappedDirectWriter.makeDirect(Writer writer)
          If the input is a DirectWriter, cast it; otherwise, create a WrappedDirectWriter.
 DirectWriter ExpandingCharBuffer.writer()
          Create a writer providing write access to the buffer.
 DirectWriter LinkedReaderAndWriter.writer()