package UU.Logging { // Provide bare functions to write to e.g. a log file. We can also // have an implementation that write to another program through // a socket. // (this is originally the class WriteLog; I pull out its interface, and rename it) // --WP. public interface LogStream { // Alexander .. fill in docs here? function initialize(): void ; // function write(mes:String): void ; // ..? function dispose(): void ; } }