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

Last change on this file since 564 was 564, checked in by pharms, 12 years ago
  • adaptations to remove some find bugs warnings
  • Property svn:executable set to *
File size: 1.1 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 information about the original type before the mapping */
21    private String originalTypeInfo;
22
23    /*
24     * (non-Javadoc)
25     *
26     * @see de.ugoe.cs.tasktree.guimodel.GUIElement#getOriginalTypeInfo()
27     */
28    @Override
29    public String getOriginalTypeInfo() {
30        return originalTypeInfo;
31    }
32
33    /*
34     * (non-Javadoc)
35     *
36     * @see GUIElement#setOriginalTypeInfo(String)
37     */
38    void setOriginalTypeInfo(String originalTypeInfo) {
39        this.originalTypeInfo = originalTypeInfo;
40    }
41
42}
Note: See TracBrowser for help on using the repository browser.