Index: /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/efg/commands/CMDefgTestCasesToSequences.java
===================================================================
--- /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/efg/commands/CMDefgTestCasesToSequences.java	(revision 205)
+++ /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/efg/commands/CMDefgTestCasesToSequences.java	(revision 206)
@@ -16,6 +16,19 @@
 import edu.umd.cs.guitar.model.data.TestCase;
 
+/**
+ * <p>
+ * Command to load a set of sequences from a set of GUITAR test cases.
+ * </p>
+ * 
+ * @author Steffen Herbold
+ * @version 1.0
+ */
 public class CMDefgTestCasesToSequences implements Command {
 
+	/*
+	 * (non-Javadoc)
+	 * 
+	 * @see de.ugoe.cs.util.console.Command#run(java.util.List)
+	 */
 	@Override
 	public void run(List<Object> parameters) {
@@ -24,5 +37,5 @@
 		try {
 			foldername = (String) parameters.get(0);
-			if( parameters.size()>=2 ) {
+			if (parameters.size() >= 2) {
 				sequencesName = (String) parameters.get(1);
 			}
@@ -30,22 +43,23 @@
 			throw new InvalidParameterException();
 		}
-		
+
 		File folder = new File(foldername);
 		// TODO would be more robust with filter
 		File[] testcaseFiles = folder.listFiles();
 		Collection<List<Event<?>>> sequences = new LinkedList<List<Event<?>>>();
-		for( File testcaseFile : testcaseFiles ) {
-			Console.traceln("Loading from file " + testcaseFile.getAbsolutePath());
-			TestCase testcase = (TestCase) IO.readObjFromFile(testcaseFile.getAbsolutePath(), TestCase.class);
+		for (File testcaseFile : testcaseFiles) {
+			Console.traceln("Loading from file "
+					+ testcaseFile.getAbsolutePath());
+			TestCase testcase = (TestCase) IO.readObjFromFile(
+					testcaseFile.getAbsolutePath(), TestCase.class);
 			List<StepType> steps = testcase.getStep();
 			List<Event<?>> sequence = new LinkedList<Event<?>>();
-			for( StepType step : steps ) {
+			for (StepType step : steps) {
 				step.getEventId();
 				sequence.add(new EFGEvent(step.getEventId()));
 				/*
-				 * Problem: widgetId unknown!
-				 * Therefore, the events will not be equal to those in the
-				 * generated from a EFG. 
-				 */ 
+				 * Problem: widgetId unknown! Therefore, the events will not be
+				 * equal to those in the generated from a EFG.
+				 */
 			}
 			sequences.add(sequence);
@@ -54,7 +68,12 @@
 			Console.traceln("Old data \"" + sequencesName + "\" overwritten");
 		}
-		
+
 	}
 
+	/*
+	 * (non-Javadoc)
+	 * 
+	 * @see de.ugoe.cs.util.console.Command#help()
+	 */
 	@Override
 	public void help() {
Index: /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/efg/commands/CMDefgToMM.java
===================================================================
--- /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/efg/commands/CMDefgToMM.java	(revision 205)
+++ /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/efg/commands/CMDefgToMM.java	(revision 206)
@@ -54,6 +54,6 @@
 		for (EventType event : efgEvents) {
 			/*
-			 * the widgetId and eventId are only hash values, 
-			 * the "interpretation" is found in the GUI file. 
+			 * the widgetId and eventId are only hash values, the
+			 * "interpretation" is found in the GUI file.
 			 */
 			Event<?> myEvent = new EFGEvent(event.getEventId());
@@ -61,7 +61,7 @@
 			 * The target is currently not set to event.widgetId() because the
 			 * WidgetId is not available when loading sequences in form of test
-			 * cases. 
+			 * cases.
 			 */
-			//myEvent.setTarget(event.getWidgetId(););
+			// myEvent.setTarget(event.getWidgetId(););
 			myEvents.add(myEvent);
 		}
