// Module : $RCSfile: IGUIElementFactory.java,v $ // Version : $Revision: 0.0 $ $Author: pharms $ $Date: 17.08.2012 $ // Project : quest-core-events // Creation : 2012 by pharms // Copyright : Patrick Harms, 2012 package de.ugoe.cs.quest.eventcore.guimodel; /** *

* TODO comment *

* * @version $Revision: $ $Date: 17.08.2012$ * @author 2012, last modified by $Author: pharms$ */ public interface IGUIElementFactory { /** *

* TODO: comment *

* * @param specification * @return */ public IGUIElement instantiateGUIElement(IGUIElementSpec specification, IGUIElement parent) throws GUIModelConfigurationException; }