1 16 package weblogic.servlet.internal; 17 18 import java.io.ByteArrayOutputStream ; 19 import java.io.IOException ; 20 import javax.servlet.ServletOutputStream ; 21 22 36 37 public class ServletOutputStreamImpl extends ServletOutputStream { 38 39 public ServletOutputStreamImpl() { 40 super(); 41 } 42 43 public ServletOutputStreamImpl(ByteArrayOutputStream baos) { 44 super(); 45 } 46 47 public void setImpl( ServletResponseImpl impl ){ 48 } 49 50 public void setExpectedCloseCalls(int closeCall) { 51 } 52 53 public void setExpectingWriteCalls(boolean expectingWriteCall) { 54 } 55 56 public void setThrowIOException(boolean throwException) { 57 } 58 59 public void close() throws IOException { 60 } 61 62 public String toString() { 63 return ""; 64 } 65 66 public void write(int b) throws IOException { 67 } 68 69 public void setupClearContents () { 70 } 71 72 public String getContents() { 73 return ""; 74 } 75 76 public void verify() { 77 } 78 } 79 | Popular Tags |