Index: /trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/defaultcommands/CMDlistCommandsTest.java
===================================================================
--- /trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/defaultcommands/CMDlistCommandsTest.java	(revision 783)
+++ /trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/defaultcommands/CMDlistCommandsTest.java	(revision 784)
@@ -1,7 +1,3 @@
-// Module    : $RCSfile: CMDlistCommandsTest.java,v $
-// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 28.08.2012 $
-// Project   : quest-ui-core-test
-// Creation  : 2012 by pharms
-// Copyright : Patrick Harms, 2012
+
 package de.ugoe.cs.util.console.defaultcommands;
 
@@ -19,31 +15,13 @@
 import de.ugoe.cs.util.console.listener.IOutputListener;
 
-/**
- * <p>
- * TODO comment
- * </p>
- * 
- * @version $Revision: $ $Date: 28.08.2012$
- * @author 2012, last modified by $Author: pharms$
- */
 public class CMDlistCommandsTest implements IOutputListener {
 
-    /** */
     private List<String> commands = new ArrayList<String>();
 
-    /**
-     * 
-     */
     @Before
     public void setUp() throws Exception {
         Console.getInstance().registerOutputListener(this);
     }
-        
-    /**
-     * <p>
-     * TODO: comment
-     * </p>
-     *
-     */
+
     @Test
     public void test() {
@@ -51,7 +29,7 @@
         CMDlistCommands command = new CMDlistCommands();
         command.run(null);
-        
+
         assertTrue(commands.size() > 0);
-        
+
         for (String cmd : commands) {
             assertNotNull(cmd);
@@ -61,7 +39,4 @@
     }
 
-    /* (non-Javadoc)
-     * @see de.ugoe.cs.util.console.listener.IOutputListener#outputMsg(java.lang.String)
-     */
     @Override
     public void outputMsg(String newMessage) {
Index: /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/Event.java
===================================================================
--- /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/Event.java	(revision 783)
+++ /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/Event.java	(revision 784)
@@ -19,5 +19,7 @@
 
     /**
+     * <p>
      * Id for object serialization.
+     * </p>
      */
     private static final long serialVersionUID = 1L;
Index: /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java
===================================================================
--- /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java	(revision 783)
+++ /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java	(revision 784)
@@ -15,6 +15,4 @@
 /**
  * TODO comment
- * 
- * TODO rename class to GUIElementFactory
  * 
  * @version $Revision: $ $Date: 13.05.2012$
Index: /trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/commands/sequences/CMDdetectTextInputEvents.java
===================================================================
--- /trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/commands/sequences/CMDdetectTextInputEvents.java	(revision 783)
+++ /trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/commands/sequences/CMDdetectTextInputEvents.java	(revision 784)
@@ -9,4 +9,8 @@
 import de.ugoe.cs.quest.SequenceInstanceOf;
 import de.ugoe.cs.quest.eventcore.Event;
+import de.ugoe.cs.quest.eventcore.gui.KeyPressed;
+import de.ugoe.cs.quest.eventcore.gui.KeyReleased;
+import de.ugoe.cs.quest.eventcore.gui.KeyTyped;
+import de.ugoe.cs.quest.eventcore.gui.TextInput;
 import de.ugoe.cs.quest.eventcore.gui.TextInput.TextEquality;
 import de.ugoe.cs.quest.eventcore.gui.TextInputDetector;
@@ -17,5 +21,6 @@
 /**
  * <p>
- * TODO comment
+ * Command that converts {@link KeyPressed}, {@link KeyReleased}, and {@link KeyTyped} sequences
+ * into {@link TextInput} events if possible.
  * </p>
  * 
@@ -54,5 +59,5 @@
                 newSequencesName = sequencesName;
             }
-            if( parameters.size() > 2) {
+            if (parameters.size() > 2) {
                 textEqualityTypeString = (String) parameters.get(2);
             }
@@ -72,5 +77,5 @@
             return;
         }
-        
+
         TextEquality textEqualityType = null;
         try {
@@ -78,5 +83,6 @@
         }
         catch (IllegalArgumentException e) {
-            Console.printerrln("Invalid mode. Only LEXICAL, SYNTACTICAL, and SEMANTICAL are allowed values!");
+            Console
+                .printerrln("Invalid mode. Only LEXICAL, SYNTACTICAL, and SEMANTICAL are allowed values!");
             return;
         }
@@ -85,5 +91,5 @@
 
         Collection<List<Event>> newSequences = new LinkedList<List<Event>>();
-       
+
         for (List<Event> sequence : sequences) {
             newSequences.add(new TextInputDetector(textEqualityType).detectTextInputs(sequence));
@@ -93,5 +99,5 @@
             CommandHelpers.dataOverwritten(newSequencesName);
         }
-        
+
     }
 
