source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/IGUIElementFactory.java @ 655

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
File size: 483 bytes
Line 
1package de.ugoe.cs.quest.eventcore.guimodel;
2
3/**
4 * <p>
5 * TODO comment
6 * </p>
7 *
8 * @version $Revision: $ $Date: 17.08.2012$
9 * @author 2012, last modified by $Author: pharms$
10 */
11public interface IGUIElementFactory {
12
13    /**
14     * <p>
15     * TODO: comment
16     * </p>
17     *
18     * @param specification
19     * @return
20     */
21    public IGUIElement instantiateGUIElement(IGUIElementSpec specification, IGUIElement parent)
22        throws GUIModelConfigurationException;
23   
24}
Note: See TracBrowser for help on using the repository browser.