home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / net / www / protocol / http / EmptyInputStream.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  436 b   |  14 lines

  1. package sun.net.www.protocol.http;
  2.  
  3. import java.io.InputStream;
  4.  
  5. class EmptyInputStream extends InputStream {
  6.    public int available() {
  7.       return 0;
  8.    }
  9.  
  10.    public int read() {
  11.       return -1;
  12.    }
  13. }
  14.