package de.ugoe.cs.util.console.listener; import de.ugoe.cs.util.console.Console; /** *

* Interface for listeners observing the output stream of the {@link Console}. *

* * @author Steffen Herbold * @version 1.0 */ public interface IOutputListener { /** *

* Receives messages send to the output stream of the {@link Console}. *

* * @param newMessage * message that was send to the console. */ public void outputMsg(String newMessage); }