KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cz > cuni > sofa > lib > Streamable


1 /* $Id: Streamable.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */
2
3 /* This code is based on the OMG's IDL Java Language mapping
4  * definitions (OMG document formal/99-06-02).
5  */

6 package cz.cuni.sofa.lib;
7
8 public interface Streamable {
9     void _read(cz.cuni.sofa.lib.InputStream is) throws java.io.IOException JavaDoc;
10     void _write(cz.cuni.sofa.lib.OutputStream os) throws java.io.IOException JavaDoc;
11 }
12
Popular Tags