- Timestamp:
- 08/23/12 13:41:44 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java
r588 r598 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 import de.ugoe.cs.quest.eventcore.guimodel.GUIElementFactory; 43 43 import de.ugoe.cs.quest.eventcore.guimodel.GUIModel; 44 44 import de.ugoe.cs.quest.eventcore.guimodel.GUIModelException; … … 237 237 } 238 238 catch (UnsupportedEncodingException e) { 239 // TODO handle Exception 239 240 e.printStackTrace(); 240 241 } 241 242 catch (ParserConfigurationException e) { 243 // TODO handle Exception 242 244 e.printStackTrace(); 243 245 } 244 246 catch (SAXException e) { 247 // TODO handle Exception 245 248 e.printStackTrace(); 246 249 } 247 250 catch (FileNotFoundException e) { 251 // TODO handle Exception 248 252 e.printStackTrace(); 249 253 } … … 262 266 } 263 267 catch (SAXException e) { 268 // TODO handle Exception 264 269 e.printStackTrace(); 265 270 } 266 271 catch (IOException e) { 272 // TODO handle Exception 267 273 e.printStackTrace(); 268 274 } … … 395 401 // 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 402 currentGUIElement = guiModel.integratePath 397 (currentGuiElementPath, AbstractDefaultGUIElementFactory.getInstance());403 (currentGuiElementPath, GUIElementFactory.getInstance()); 398 404 } 399 405 catch (GUIModelException e) {
Note: See TracChangeset
for help on using the changeset viewer.