home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / icsclass.jar / javax / servlet / ServletResponse.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-15  |  490 b   |  17 lines

  1. package javax.servlet;
  2.  
  3. import java.io.IOException;
  4. import java.io.PrintWriter;
  5.  
  6. public interface ServletResponse {
  7.    void setContentLength(int var1);
  8.  
  9.    void setContentType(String var1);
  10.  
  11.    ServletOutputStream getOutputStream() throws IOException;
  12.  
  13.    PrintWriter getWriter() throws IOException;
  14.  
  15.    String getCharacterEncoding();
  16. }
  17.