DixShtix

Uses of Class
com.dixshtix.riff.OutStream

Packages that use OutStream
com.dixshtix.niff This package is for the manipulation of (Musical) Notation Interchange File Format (NIFF) Files. 
com.dixshtix.riff This package is for the manipulation of Resource Interchange File Format (RIFF) Files. 
 

Uses of OutStream in com.dixshtix.niff
 

Subclasses of OutStream in com.dixshtix.niff
 class NOutputStream
           
 

Uses of OutStream in com.dixshtix.riff
 

Fields in com.dixshtix.riff declared as OutStream
private  OutStream IOChunk.o
          For written chunks, this the output stream.
 

Methods in com.dixshtix.riff with parameters of type OutStream
 void GenericChunk.writeRIFF(OutStream out)
           
 void ContainerChunk.writeRIFF(OutStream out)
           
(package private)  void IOChunk.writeHeader(OutStream out)
          Internal method to write the fixed header for a Chunk or container.
(package private)  void IOChunk.writeBody(OutStream out)
          Write variable-length output.
 

Constructors in com.dixshtix.riff with parameters of type OutStream
IOChunk(OutStream o, FourByteConstant container, FourByteConstant id, int guess)
          Create a chunk or container on the output stream.
IOChunk(OutStream o, FourByteConstant id, int guess)
          Create a chunk on the output stream.
IOChunk(OutStream o, FourByteConstant container, FourByteConstant id)
          Preferred creation of a chunk or container on the output stream.
IOChunk(OutStream o, FourByteConstant id)
          Preferred creation of a chunk on the output stream.
 


DixShtix