Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 589)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 598)
@@ -40,5 +40,5 @@
 import de.ugoe.cs.quest.eventcore.gui.MouseButtonUp;
 import de.ugoe.cs.quest.eventcore.gui.MouseClick;
-import de.ugoe.cs.quest.eventcore.guimodel.AbstractDefaultGUIElementFactory;
+import de.ugoe.cs.quest.eventcore.guimodel.GUIElementFactory;
 import de.ugoe.cs.quest.eventcore.guimodel.GUIModel;
 import de.ugoe.cs.quest.eventcore.guimodel.GUIModelException;
@@ -237,13 +237,17 @@
         }
         catch (UnsupportedEncodingException e) {
+            // TODO handle Exception
             e.printStackTrace();
         }
         catch (ParserConfigurationException e) {
+            // TODO handle Exception
             e.printStackTrace();
         }
         catch (SAXException e) {
+            // TODO handle Exception
             e.printStackTrace();
         }
         catch (FileNotFoundException e) {
+            // TODO handle Exception
             e.printStackTrace();
         }
@@ -262,7 +266,9 @@
             }
             catch (SAXException e) {
+                // TODO handle Exception
                 e.printStackTrace();
             }
             catch (IOException e) {
+                // TODO handle Exception
                 e.printStackTrace();
             }
@@ -395,5 +401,5 @@
                     // TODO right now, there is null pointer exception possible, if the factory cannot create a the GUIElement. We need to devise where and how this should be handled best
                     currentGUIElement = guiModel.integratePath
-                        (currentGuiElementPath, AbstractDefaultGUIElementFactory.getInstance());
+                        (currentGuiElementPath, GUIElementFactory.getInstance());
                 }
                 catch (GUIModelException e) {
