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

Last change on this file since 545 was 545, checked in by pharms, 12 years ago
  • first version of event targets for GUI events including the GUI model management and the support for the instantiation of default GUI elements
  • Property svn:executable set to *
File size: 1.3 KB
Line 
1// Module    : $RCSfile: AbstractDefaultGUIElement.java,v $
2// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 27.11.2011 17:21:28 $
3// Project   : TaskTreePerformanceTest
4// Creation  : 2011 by Patrick
5// Copyright : Patrick Harms, 2011
6
7package de.ugoe.cs.quest.eventcore.guimodel;
8
9/**
10 * TODO comment
11 *
12 * @version $Revision: $ $Date: $
13 * @author 2011, last modified by $Author: $
14 */
15public abstract class AbstractDefaultGUIElement implements IGUIElement {
16   
17    /**  */
18    public static final long serialVersionUID = 1L;
19
20    /** the parent interaction element */
21    private IGUIElement mParent;
22
23    /** the information about the original type before the mapping */
24    private String mOriginalTypeInfo;
25
26    /*
27     * (non-Javadoc)
28     *
29     * @see GUIElement#getParent()
30     */
31    public IGUIElement getParent() {
32        return mParent;
33    }
34
35    /*
36     * (non-Javadoc)
37     *
38     * @see de.ugoe.cs.tasktree.guimodel.GUIElement#getOriginalTypeInfo()
39     */
40    @Override
41    public String getOriginalTypeInfo() {
42        return mOriginalTypeInfo;
43    }
44
45    /*
46     * (non-Javadoc)
47     *
48     * @see GUIElement#setOriginalTypeInfo(String)
49     */
50    void setOriginalTypeInfo(String originalTypeInfo) {
51        mOriginalTypeInfo = originalTypeInfo;
52    }
53
54}
Note: See TracBrowser for help on using the repository browser.