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

Last change on this file since 612 was 603, checked in by pharms, 12 years ago
  • added reference to parent nodes to GUI elements
File size: 706 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 IGUIElement instantiateGUIElement(IGUIElementSpec specification, IGUIElement parent)
27        throws GUIModelConfigurationException;
28   
29}
Note: See TracBrowser for help on using the repository browser.