source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/gui/KeyInteraction.java @ 610

Last change on this file since 610 was 550, checked in by pharms, 12 years ago
  • removed leading m in member variables
  • Property svn:executable set to *
File size: 886 bytes
Line 
1// Module    : $RCSfile: Click.java,v $
2// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 06.11.2011 10:28:39 $
3// Project   : TaskTreePerformanceTest
4// Creation  : 2011 by Patrick
5// Copyright : Patrick Harms, 2011
6
7package de.ugoe.cs.quest.eventcore.gui;
8
9import de.ugoe.cs.tasktree.keyboardmaps.VirtualKey;
10
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: $
15 * @author 2011, last modified by $Author: $
16 */
17public abstract class KeyInteraction implements IInteraction {
18
19    /**  */
20    private static final long serialVersionUID = 1L;
21
22    /** the key, that was actually pressed */
23    private VirtualKey key;
24
25    /**
26     * @param key
27     */
28    public KeyInteraction(VirtualKey key) {
29        super();
30        this.key = key;
31    }
32
33    /**
34     *
35     */
36    public VirtualKey getKey() {
37        return key;
38    }
39
40}
Note: See TracBrowser for help on using the repository browser.