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 641)
+++ trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java	(revision 642)
@@ -45,5 +45,4 @@
 import de.ugoe.cs.quest.eventcore.guimodel.GUIModelException;
 import de.ugoe.cs.quest.eventcore.guimodel.IGUIElement;
-import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEvent;
 import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEventId;
 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElementSpec;
@@ -92,11 +91,4 @@
     /**
      * <p>
-     * Internal handle to the parent parameters of the event that is currently being parsed.
-     * </p>
-     */
-    private Map<String, String> currentParentParameters;
-
-    /**
-     * <p>
      * Internal handle to the event sequence that is currently being parsed.
      * </p>
@@ -325,5 +317,4 @@
                 currentEventParameters = new HashMap<String, String>();
                 currentSourceParameters = new HashMap<String, String>();
-                currentParentParameters = new HashMap<String, String>();
                 paramSource = ParamSource.EVENT;
             }
@@ -336,7 +327,4 @@
                 else if (paramSource == ParamSource.SOURCE) {
                     currentSourceParameters.put(atts.getValue("name"), atts.getValue("value"));
-                }
-                else if (paramSource == ParamSource.PARENT) {
-                    currentParentParameters.put(atts.getValue("name"), atts.getValue("value"));
                 }
                 else if (paramSource == ParamSource.COMPONENT) {
@@ -408,8 +396,7 @@
                 }
                 
-                JFCEvent event = new JFCEvent
+                Event event = new Event
                     (instantiateInteraction(currentEventId, currentEventParameters),
-                     (currentGUIElement == null ? lastGUIElement : currentGUIElement),
-                     currentEventParameters, currentSourceParameters, currentParentParameters);
+                     (currentGUIElement == null ? lastGUIElement : currentGUIElement));
                 
                 currentSequence.add(event);
@@ -417,5 +404,4 @@
                 currentEventParameters = null;
                 currentSourceParameters = null;
-                currentParentParameters = null;
                 currentGuiElementSpec = null;
                 currentGuiElementPath.clear();
Index: trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/eventcore/JFCEvent.java
===================================================================
--- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/eventcore/JFCEvent.java	(revision 641)
+++ 	(revision )
@@ -1,108 +1,0 @@
-
-package de.ugoe.cs.quest.plugin.jfc.eventcore;
-
-import java.util.Map;
-
-import de.ugoe.cs.quest.eventcore.Event;
-import de.ugoe.cs.quest.eventcore.IEventTarget;
-import de.ugoe.cs.quest.eventcore.gui.IInteraction;
-
-/**
- * <p>
- * This class defines JFC events.
- * </p>
- * 
- * @author Steffen Herbold
- * @version 1.0
- */
-public class JFCEvent extends Event {
-
-    /**
-     * <p>
-     * Id for object serialization.
-     * </p>
-     */
-    private static final long serialVersionUID = 1L;
-
-    /**
-     * <p>
-     * Internal map of parameters associated with the event.
-     * </p>
-     */
-    private Map<String, String> parameters;
-
-    /**
-     * <p>
-     * Information about the event source.
-     * </p>
-     */
-    private Map<String, String> sourceParameters;
-
-    /**
-     * <p>
-     * Information about the parent of the event source.
-     * </p>
-     */
-    private Map<String, String> parentParameters;
-
-    /**
-     * <p>
-     * Constructor. Creates a new JFCEvent.
-     * </p>
-     * 
-     * @param type
-     *            type of the event
-     */
-    public JFCEvent(IInteraction        type,
-                    IEventTarget        target,
-                    Map<String, String> parameters,
-                    Map<String, String> sourceParameters,
-                    Map<String, String> parentParameters)
-    {
-        super(type);
-        super.setTarget(target);
-        this.parameters = parameters;
-        this.sourceParameters = sourceParameters;
-        this.parentParameters = parentParameters;
-    }
-
-    /**
-     * <p>
-     * Retrieves the value of a parameter.
-     * </p>
-     * 
-     * @param name
-     *            name of the parameter
-     * @return value of the parameter
-     */
-    public String getParameter(String name) {
-        return parameters.get(name);
-    }
-
-    /**
-     * <p>
-     * Retrieves information about the source of the event.
-     * </p>
-     * 
-     * @param name
-     *            name of the information
-     * @return value of the information
-     */
-    public String getSourceInformation(String name) {
-        return sourceParameters.get(name);
-    }
-
-    /**
-     * <p>
-     * Retrieves information about the parent of the source of the event.
-     * </p>
-     * 
-     * @param name
-     *            name of the information
-     * @return value of the information
-     */
-    public String getParentInformation(String name) {
-        return parentParameters.get(name);
-    }
-
-}
