1 2 24 25 26 27 28 29 package com.lutris.appserver.server.httpPresentation; 30 31 import java.io.IOException ; 32 import java.io.OutputStream ; 33 34 35 38 public abstract class HttpPresentationOutputStream extends OutputStream { 39 40 42 47 public abstract void print(String s) throws IOException ; 48 49 54 public abstract void print(boolean b) throws IOException ; 55 56 61 public abstract void print(char c) throws IOException ; 62 63 68 public abstract void print(int i) throws IOException ; 69 70 75 public abstract void print(long l) throws IOException ; 76 77 82 public abstract void print(float f) throws IOException ; 83 84 89 public abstract void print(double d) throws IOException ; 90 91 96 public abstract void println() throws IOException ; 97 98 103 public abstract void println(String s) throws IOException ; 104 105 110 public abstract void println(boolean b) throws IOException ; 111 112 117 public abstract void println(char c) throws IOException ; 118 119 124 public abstract void println(int i) throws IOException ; 125 126 131 public abstract void println(long l) throws IOException ; 132 133 138 public abstract void println(float f) throws IOException ; 139 140 145 public abstract void println(double d) throws IOException ; 146 147 151 public void close() throws IOException { 152 throw new IOException ("HttpPresentationOutputStream may not be closed"); 153 } 154 } 155 | Popular Tags |