Changeset 1084 for trunk/autoquest-plugin-jfc
- Timestamp:
- 02/18/13 09:30:13 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java
r1058 r1084 38 38 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIElementTree; 39 39 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModel; 40 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModelException; 40 41 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement; 41 42 import de.ugoe.cs.autoquest.keyboardmaps.VirtualKey; … … 397 398 } 398 399 else if (qName.equals("component") && currentGUIElementHash != null) { 399 currentGUIElementTree.add(currentGUIElementHash, currentParentHash, 400 currentGuiElementSpec); 400 try { 401 currentGUIElementTree.add(currentGUIElementHash, currentParentHash, 402 currentGuiElementSpec); 403 } 404 catch (GUIModelException e) { 405 throw new SAXException("could not handle GUI element with hash " + 406 currentGUIElementHash + ": " + e.getMessage(), e); 407 } 401 408 List<Event> unhandledEvents = eventsWithoutTargets.get(currentGUIElementHash); 402 409 if (unhandledEvents != null) {
Note: See TracChangeset
for help on using the changeset viewer.