1 5 package com.teamkonzept.web.oracle; 6 7 import oracle.html.*; 8 9 import com.teamkonzept.web.*; 10 11 public class OracleWRBOutput extends TKPseudoOutputStream { 12 HtmlStream stream; 13 14 19 public OracleWRBOutput() 20 { 21 this( HtmlStream.theStream() ); 22 } 23 24 public OracleWRBOutput( HtmlStream stream ) 25 { 26 this.stream = stream; 27 } 28 29 public final void write( String s ) 30 { 31 stream.print( s ); 32 33 } 34 35 } 38 39 | Popular Tags |