1 23 24 package com.sun.enterprise.cli.framework; 25 26 import java.io.OutputStream ; 27 28 31 public interface IOutput 32 { 33 38 public void println( String s ); 39 40 41 46 public void println( Object msg ); 47 48 49 54 public void print( String s ); 55 56 57 62 public void print( Object msg ); 63 64 65 68 public void close(); 69 70 71 75 public void flush(); 76 77 } 78 | Popular Tags |