Index: trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java
===================================================================
--- trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java	(revision 994)
+++ trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java	(revision 1001)
@@ -90,8 +90,14 @@
     /**
      * <p>
-     * Internal handle to the parameters of the event that is currently being parsed.
+     * Internal handle to the source of the event that is currently being parsed.
      * </p>
      */
     private Integer currentEventSource;
+    
+    /**
+     * <p>
+     * Internal handle to the timestamp of the event that is currently being parsed.
+     */
+    private Long currentEventTimestamp = -1l;
      
     /**
@@ -335,4 +341,7 @@
         		if ("source".equals(atts.getValue("name"))){
         			currentEventSource = (int) Long.parseLong(atts.getValue("value"), 16);
+        		}
+        		if ("timestamp".equals(atts.getValue("name"))){
+        			currentEventTimestamp = Long.parseLong(atts.getValue("value"));
         		}
                 currentEventParameters.put(atts.getValue("name"), atts.getValue("value"));
@@ -397,4 +406,5 @@
                     (instantiateInteraction(currentEventId, currentEventParameters),
                      (currentGUIElement == null ? lastGUIElement : currentGUIElement));
+                event.setTimestamp(currentEventTimestamp);
                 
                 currentSequence.add(event);
@@ -402,4 +412,5 @@
                 currentEventParameters = null;
                 currentEventId = null;
+                currentEventTimestamp = -1l;
                 
                 if (currentGUIElement != null) {
