- Timestamp:
- 08/27/12 17:40:57 (12 years ago)
- Location:
- trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java
r639 r642 45 45 import de.ugoe.cs.quest.eventcore.guimodel.GUIModelException; 46 46 import de.ugoe.cs.quest.eventcore.guimodel.IGUIElement; 47 import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEvent;48 47 import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEventId; 49 48 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElementSpec; … … 92 91 /** 93 92 * <p> 94 * Internal handle to the parent parameters of the event that is currently being parsed.95 * </p>96 */97 private Map<String, String> currentParentParameters;98 99 /**100 * <p>101 93 * Internal handle to the event sequence that is currently being parsed. 102 94 * </p> … … 325 317 currentEventParameters = new HashMap<String, String>(); 326 318 currentSourceParameters = new HashMap<String, String>(); 327 currentParentParameters = new HashMap<String, String>();328 319 paramSource = ParamSource.EVENT; 329 320 } … … 336 327 else if (paramSource == ParamSource.SOURCE) { 337 328 currentSourceParameters.put(atts.getValue("name"), atts.getValue("value")); 338 }339 else if (paramSource == ParamSource.PARENT) {340 currentParentParameters.put(atts.getValue("name"), atts.getValue("value"));341 329 } 342 330 else if (paramSource == ParamSource.COMPONENT) { … … 408 396 } 409 397 410 JFCEvent event = new JFCEvent398 Event event = new Event 411 399 (instantiateInteraction(currentEventId, currentEventParameters), 412 (currentGUIElement == null ? lastGUIElement : currentGUIElement), 413 currentEventParameters, currentSourceParameters, currentParentParameters); 400 (currentGUIElement == null ? lastGUIElement : currentGUIElement)); 414 401 415 402 currentSequence.add(event); … … 417 404 currentEventParameters = null; 418 405 currentSourceParameters = null; 419 currentParentParameters = null;420 406 currentGuiElementSpec = null; 421 407 currentGuiElementPath.clear();
Note: See TracChangeset
for help on using the changeset viewer.