DixShtix

Uses of Class
com.dixshtix.riff.IOChunk

Packages that use IOChunk
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 IOChunk in com.dixshtix.niff
 

Methods in com.dixshtix.niff with parameters of type IOChunk
(package private)  void Parser.parseKnownChunk(InStream prf, IOChunk chunk)
          Print Chunk and then descend recursively into the NIFF file hierarchy.
 

Uses of IOChunk in com.dixshtix.riff
 

Methods in com.dixshtix.riff that return IOChunk
 IOChunk InStream.peek()
          Return the currently open chunk.
 IOChunk InStream.pop()
          Pop a chunk off the stack.
 IOChunk InStream.chunkDescend()
          Read a chunk header and push on stack.
 IOChunk InStream.chunkDescend(FourByteConstant fcc)
          Given a four-byte-constant, complete reading of the chunk header and push on stack.
 IOChunk OutStream.peek()
          List chunk on top of stack.
 IOChunk OutStream.pop()
          Pop a chunk, and write content to parent chunk or the final output.
 

Methods in com.dixshtix.riff with parameters of type IOChunk
(package private)  void Parser.parsechunk(InStream prf, IOChunk chunk)
          Parse Chunk and then descend recursively into the RIFF file hierarchy.
(package private)  void Dump.dumpchunk(InStream prf, IOChunk chunk, int indent)
          Print Chunk and then descend recursively into the RIFF file hierarchy.
(package private)  void ToXML.dumpchunk(InStream prf, IOChunk chunk, int indent)
          Print Chunk and then descend recursively into the RIFF file hierarchy.
 void InStream.push(IOChunk chunk)
          Push a chunk onto the stack.
 void InStream.chunkAscend(IOChunk c)
          After all chunk data has been read, this will close and pop the chunk.
 void OutStream.push(IOChunk chunk)
          Push chunk on stack.
 


DixShtix