001 package cs101.io.connection; 002 003 public interface OutputConnection 004 { 005 public void writeOutput( String s ); 006 } 007