- Timestamp:
- 08/22/12 15:53:43 (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
r573 r585 40 40 import de.ugoe.cs.quest.eventcore.gui.MouseButtonUp; 41 41 import de.ugoe.cs.quest.eventcore.gui.MouseClick; 42 import de.ugoe.cs.quest.eventcore.guimodel.AbstractDefaultGUIElementFactory; 42 43 import de.ugoe.cs.quest.eventcore.guimodel.GUIModel; 43 44 import de.ugoe.cs.quest.eventcore.guimodel.GUIModelException; … … 45 46 import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEvent; 46 47 import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEventId; 47 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElementFactory;48 48 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElementSpec; 49 49 import de.ugoe.cs.tasktree.keyboardmaps.VirtualKey; … … 394 394 IGUIElement currentGUIElement; 395 395 try { 396 // 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 396 397 currentGUIElement = guiModel.integratePath 397 (currentGuiElementPath, JFCGUIElementFactory.getInstance());398 (currentGuiElementPath, AbstractDefaultGUIElementFactory.getInstance()); 398 399 } 399 400 catch (GUIModelException e) {
Note: See TracChangeset
for help on using the changeset viewer.