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

* Interface for listeners observing the commands executed by the * {@link CommandExecuter}. *

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

* Receives the command strings of all executed by the * {@link CommandExecuter}. *

* * @param command * string of the command. */ public void commandNotification(String command); }