KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > state > Input


1 package org.sapia.soto.state;
2
3 import java.io.IOException JavaDoc;
4 import java.io.InputStream JavaDoc;
5
6
7 /**
8  * Interfaces that is used to hide streaming details from client applications.
9  *
10  * @author Yanick Duchesne
11  *
12  * <dl>
13  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
14  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
15  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
16  * </dl>
17  */

18 public interface Input {
19   /**
20    * @return an <code>InputStream</code> whose origin is implementation dependant.
21    * @throws IOException if an IO problem occurs while acquiring the stream.
22    */

23   public InputStream JavaDoc getInputStream() throws IOException JavaDoc;
24 }
25
Popular Tags