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

Last change on this file since 585 was 576, checked in by pharms, 12 years ago
  • adaptations for ensuring, that GUI event targets can be created as singletons during parsing.
File size: 649 bytes
Line 
1// Module    : $RCSfile: IGUIElementFactory.java,v $
2// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 17.08.2012 $
3// Project   : quest-core-events
4// Creation  : 2012 by pharms
5// Copyright : Patrick Harms, 2012
6package de.ugoe.cs.quest.eventcore.guimodel;
7
8/**
9 * <p>
10 * TODO comment
11 * </p>
12 *
13 * @version $Revision: $ $Date: 17.08.2012$
14 * @author 2012, last modified by $Author: pharms$
15 */
16public interface IGUIElementFactory {
17
18    /**
19     * <p>
20     * TODO: comment
21     * </p>
22     *
23     * @param specification
24     * @return
25     */
26    public abstract IGUIElement instantiateGUIElement(IGUIElementSpec specification);
27   
28}
Note: See TracBrowser for help on using the repository browser.