home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / activation / DataSource.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  307 b   |  16 lines

  1. package javax.activation;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public interface DataSource {
  8.    InputStream getInputStream() throws IOException;
  9.  
  10.    OutputStream getOutputStream() throws IOException;
  11.  
  12.    String getContentType();
  13.  
  14.    String getName();
  15. }
  16.