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 mapping4 * 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 ;10 void _write(cz.cuni.sofa.lib.OutputStream os) throws java.io.IOException ;11 }12