Index: /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java
===================================================================
--- /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java	(revision 184)
+++ /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/ConsoleObserver.java	(revision 185)
@@ -52,3 +52,13 @@
 	public void printStacktrace(Exception e);
 
+	/**
+	 * <p>
+	 * Receives the command strings of all executed commands.
+	 * </p>
+	 * 
+	 * @param command
+	 *            string of the command.
+	 */
+	public void commandExecuted(String command);
+
 }
Index: /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java
===================================================================
--- /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java	(revision 184)
+++ /trunk/JavaHelperLib/src/de/ugoe/cs/util/console/TextConsole.java	(revision 185)
@@ -117,3 +117,15 @@
 		return new String(buffer);
 	}
+
+	/**
+	 * <p>
+	 * The {@link TextConsole} ignores this notification.
+	 * </p>
+	 * 
+	 * @see de.ugoe.cs.util.console.ConsoleObserver#commandExecuted(java.lang.String)
+	 */
+	@Override
+	public void commandExecuted(String command) {
+		// ignores the notification
+	}
 }
