Index: /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/CommandExecuter.java
===================================================================
--- /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/CommandExecuter.java	(revision 185)
+++ /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/CommandExecuter.java	(revision 186)
@@ -108,4 +108,5 @@
 	 */
 	public void exec(String command) {
+		Console.commandNotification(command);
 		Command cmd = null;
 		CommandParser parser = new CommandParser();
Index: /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/Console.java
===================================================================
--- /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/Console.java	(revision 185)
+++ /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/Console.java	(revision 186)
@@ -214,3 +214,20 @@
 	}
 
+	/**
+	 * <p>
+	 * Called by {@link CommandExecuter#exec(String)}.
+	 * </p>
+	 * 
+	 * @param command
+	 *            command that is executed
+	 */
+	static void commandNotification(String command) {
+		if (theInstance == null) {
+			getInstance();
+		}
+		for (ConsoleObserver observer : theInstance.observers) {
+			observer.commandNotification(command);
+		}
+	}
+
 }
Index: /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java
===================================================================
--- /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java	(revision 185)
+++ /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java	(revision 186)
@@ -60,5 +60,5 @@
 	 *            string of the command.
 	 */
-	public void commandExecuted(String command);
+	public void commandNotification(String command);
 
 }
Index: /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java
===================================================================
--- /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java	(revision 185)
+++ /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java	(revision 186)
@@ -123,8 +123,8 @@
 	 * </p>
 	 * 
-	 * @see de.ugoe.cs.util.console.ConsoleObserver#commandExecuted(java.lang.String)
+	 * @see de.ugoe.cs.util.console.ConsoleObserver#commandNotification(java.lang.String)
 	 */
 	@Override
-	public void commandExecuted(String command) {
+	public void commandNotification(String command) {
 		// ignores the notification
 	}
