Changeset 585 for trunk/quest-plugin-jfc
- Timestamp:
- 08/22/12 15:53:43 (12 years ago)
- Location:
- trunk/quest-plugin-jfc
- Files:
-
- 6 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-jfc/pom.xml
r573 r585 36 36 </configuration> 37 37 </plugin> 38 <plugin> 39 <artifactId>maven-assembly-plugin</artifactId> 40 <version>2.2-beta-2</version> 41 <configuration> 42 <descriptors> 43 <descriptor>src/main/assembly/config.xml</descriptor> 44 </descriptors> 45 </configuration> 46 <executions> 47 <execution> 48 <id>make-assembly</id> 49 <phase>package</phase> 50 <goals> 51 <goal>single</goal> 52 </goals> 53 </execution> 54 </executions> 55 </plugin> 38 56 </plugins> 39 57 </build> -
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.