Changeset 592 for trunk/quest-core-events
- Timestamp:
- 08/23/12 13:37:59 (12 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java
r586 r592 27 27 * @author 2012, last modified by $Author: patrick$ 28 28 */ 29 public class AbstractDefaultGUIElementFactory implements IGUIElementFactory {29 public class GUIElementFactory implements IGUIElementFactory { 30 30 31 31 /** */ 32 private static AbstractDefaultGUIElementFactory instance = new AbstractDefaultGUIElementFactory();33 34 /** 35 * TODO: comment 36 * 37 */ 38 private AbstractDefaultGUIElementFactory() {39 } 40 41 /** 42 * TODO: comment 43 * 44 * @return 45 */ 46 public static synchronized AbstractDefaultGUIElementFactory getInstance() {32 private static GUIElementFactory instance = new GUIElementFactory(); 33 34 /** 35 * TODO: comment 36 * 37 */ 38 private GUIElementFactory() { 39 } 40 41 /** 42 * TODO: comment 43 * 44 * @return 45 */ 46 public static synchronized GUIElementFactory getInstance() { 47 47 return instance; 48 48 } … … 81 81 */ 82 82 @Override 83 public IGUIElement instantiateGUIElement(IGUIElementSpec specification) { 83 public IGUIElement instantiateGUIElement(IGUIElementSpec specification) 84 throws GUIModelConfigurationException 85 { 84 86 Properties mappings = getMappingsFromConfiguration(); 85 87 IGUIElement guiElement = null;
Note: See TracChangeset
for help on using the changeset viewer.