Searched defs:RIFFWriter (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRIFFWriter.java38 public final class RIFFWriter extends OutputStream { class in inherits:OutputStream
168 private RIFFWriter childchunk = null;
172 public RIFFWriter(String name, String format) throws IOException { method in class:RIFFWriter
176 public RIFFWriter(File file, String format) throws IOException { method in class:RIFFWriter
180 public RIFFWriter(OutputStream stream, String format) throws IOException { method in class:RIFFWriter
184 private RIFFWriter(RandomAccessWriter raf, String format, int chunktype) method in class:RIFFWriter
276 public RIFFWriter writeList(String format) throws IOException {
285 childchunk = new RIFFWriter(this.raf, format, 1);
289 public RIFFWriter writeChunk(String format) throws IOException {
298 childchunk = new RIFFWriter(thi
[all...]

Completed in 482 milliseconds