KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > prevayler > foundation > SimpleOutputStream


1 package org.prevayler.foundation;
2
3 import java.io.File JavaDoc;
4 import java.io.IOException JavaDoc;
5
6
7 /**
8  * @deprecated Use DurableOutputStream instead. Deprecated since Prevayler 2.00.002.
9  */

10 public class SimpleOutputStream extends DurableOutputStream {
11
12     public SimpleOutputStream(File JavaDoc file) throws IOException JavaDoc {
13         super(file);
14     }
15
16 }
17
Popular Tags