Changeset 598


Ignore:
Timestamp:
08/23/12 13:41:44 (12 years ago)
Author:
pharms
Message:
  • renamed former abstract factory so that the class names shows, that it is no more abstract and that is does not need to be overwritten
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParser.java

    r588 r598  
    4040import de.ugoe.cs.quest.eventcore.gui.MouseButtonUp; 
    4141import de.ugoe.cs.quest.eventcore.gui.MouseClick; 
    42 import de.ugoe.cs.quest.eventcore.guimodel.AbstractDefaultGUIElementFactory; 
     42import de.ugoe.cs.quest.eventcore.guimodel.GUIElementFactory; 
    4343import de.ugoe.cs.quest.eventcore.guimodel.GUIModel; 
    4444import de.ugoe.cs.quest.eventcore.guimodel.GUIModelException; 
     
    237237        } 
    238238        catch (UnsupportedEncodingException e) { 
     239            // TODO handle Exception 
    239240            e.printStackTrace(); 
    240241        } 
    241242        catch (ParserConfigurationException e) { 
     243            // TODO handle Exception 
    242244            e.printStackTrace(); 
    243245        } 
    244246        catch (SAXException e) { 
     247            // TODO handle Exception 
    245248            e.printStackTrace(); 
    246249        } 
    247250        catch (FileNotFoundException e) { 
     251            // TODO handle Exception 
    248252            e.printStackTrace(); 
    249253        } 
     
    262266            } 
    263267            catch (SAXException e) { 
     268                // TODO handle Exception 
    264269                e.printStackTrace(); 
    265270            } 
    266271            catch (IOException e) { 
     272                // TODO handle Exception 
    267273                e.printStackTrace(); 
    268274            } 
     
    395401                    // 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 
    396402                    currentGUIElement = guiModel.integratePath 
    397                         (currentGuiElementPath, AbstractDefaultGUIElementFactory.getInstance()); 
     403                        (currentGuiElementPath, GUIElementFactory.getInstance()); 
    398404                } 
    399405                catch (GUIModelException e) { 
Note: See TracChangeset for help on using the changeset viewer.