Index: trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParserTest.java
===================================================================
--- trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParserTest.java	(revision 575)
+++ trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParserTest.java	(revision 601)
@@ -1,3 +1,2 @@
-//-------------------------------------------------------------------------------------------------
 // Module    : $RCSfile: ReplayReaderTest.java,v $
 // Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 26.11.2011 15:10:08 $
@@ -5,5 +4,4 @@
 // Creation  : 2011 by Patrick
 // Copyright : Patrick Harms, 2011
-//-------------------------------------------------------------------------------------------------
 
 package de.ugoe.cs.quest.plugin.jfc;
@@ -24,5 +22,4 @@
 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement;
 
-//-------------------------------------------------------------------------------------------------
 /**
  * TODO comment
@@ -31,28 +28,19 @@
  * @author 2011, last modified by $Author: $
  */
-// -------------------------------------------------------------------------------------------------
+public class JFCLogParserTest {
 
-public class JFCLogParserTest
-{
-
-    // -----------------------------------------------------------------------------------------------
     /**
-   *
-   */
-    // -----------------------------------------------------------------------------------------------
+     *
+     */
     @Before
-    public void setUp()
-    {
-        //Logger.getLogger("").getHandlers()[0].setFormatter(new SimpleLogFormatter());
+    public void setUp() {
+        // Logger.getLogger("").getHandlers()[0].setFormatter(new SimpleLogFormatter());
     }
 
-    // -----------------------------------------------------------------------------------------------
     /**
-   *
-   */
-    // -----------------------------------------------------------------------------------------------
+     *
+     */
     @Test
-    public void test() throws Exception
-    {
+    public void test() throws Exception {
         JFCLogParser parser = new JFCLogParser(null);
         parser.parseFile(new File(ClassLoader.getSystemResource("trace.xml").getFile()));
@@ -74,5 +62,5 @@
         System.err.println("}");
         System.err.println("\n\n");
-        
+
         GUIModel guiModel = parser.getGuiModel();
         assertNotNull(guiModel);
@@ -85,32 +73,27 @@
     /**
      * TODO: comment
-     *
+     * 
      * @param root
      * @param guiModel
      */
-    private void dumpGUIElement(IGUIElement guiElement,
-                                GUIModel    guiModel,
-                                String      indent)
-    {
+    private void dumpGUIElement(IGUIElement guiElement, GUIModel guiModel, String indent) {
         assertTrue(guiElement instanceof JFCGUIElement);
-        
+
         System.err.print(indent);
         System.err.print(guiElement);
-        
+
         List<IGUIElement> children = guiModel.getChildren(guiElement);
-        
-        if ((children != null) && (children.size() > 0))
-        {
+
+        if ((children != null) && (children.size() > 0)) {
             System.err.println(" {");
-            
-            for (IGUIElement child: children)
-            {
+
+            for (IGUIElement child : children) {
                 dumpGUIElement(child, guiModel, indent + "  ");
             }
-            
+
             System.err.print(indent);
             System.err.print("}");
         }
-        
+
         System.err.println();
     }
