home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / javax / servlet / jsp / JspWriter.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-26  |  1.2 KB  |  73 lines

  1. package javax.servlet.jsp;
  2.  
  3. import java.io.IOException;
  4. import java.io.Writer;
  5.  
  6. public abstract class JspWriter extends Writer {
  7.    public static final int NO_BUFFER = 0;
  8.    public static final int DEFAULT_BUFFER = -1;
  9.    protected int bufferSize;
  10.    protected boolean autoFlush;
  11.  
  12.    protected void JspWriter(int var1, boolean var2) {
  13.       this.bufferSize = var1;
  14.       this.autoFlush = var2;
  15.    }
  16.  
  17.    public abstract void newLine() throws IOException;
  18.  
  19.    public abstract void print(boolean var1) throws IOException;
  20.  
  21.    public abstract void print(char var1) throws IOException;
  22.  
  23.    public abstract void print(int var1) throws IOException;
  24.  
  25.    public abstract void print(long var1) throws IOException;
  26.  
  27.    public abstract void print(float var1) throws IOException;
  28.  
  29.    public abstract void print(double var1) throws IOException;
  30.  
  31.    public abstract void print(char[] var1) throws IOException;
  32.  
  33.    public abstract void print(String var1) throws IOException;
  34.  
  35.    public abstract void print(Object var1) throws IOException;
  36.  
  37.    public abstract void println() throws IOException;
  38.  
  39.    public abstract void println(boolean var1) throws IOException;
  40.  
  41.    public abstract void println(char var1) throws IOException;
  42.  
  43.    public abstract void println(int var1) throws IOException;
  44.  
  45.    public abstract void println(long var1) throws IOException;
  46.  
  47.    public abstract void println(float var1) throws IOException;
  48.  
  49.    public abstract void println(double var1) throws IOException;
  50.  
  51.    public abstract void println(char[] var1) throws IOException;
  52.  
  53.    public abstract void println(String var1) throws IOException;
  54.  
  55.    public abstract void println(Object var1) throws IOException;
  56.  
  57.    public abstract void clear() throws IOException;
  58.  
  59.    public abstract void flush() throws IOException;
  60.  
  61.    public abstract void close() throws IOException;
  62.  
  63.    public int getBufferSize() {
  64.       return this.bufferSize;
  65.    }
  66.  
  67.    public abstract int getRemaining();
  68.  
  69.    public boolean isAutoFlush() {
  70.       return this.autoFlush;
  71.    }
  72. }
  73.