//------------------------------------------------------------------------------------------------- // Module : $RCSfile: Click.java,v $ // Version : $Revision: 0.0 $ $Author: Patrick $ $Date: 06.11.2011 10:28:39 $ // Project : TaskTreePerformanceTest // Creation : 2011 by Patrick // Copyright : Patrick Harms, 2011 //------------------------------------------------------------------------------------------------- package de.ugoe.cs.quest.eventcore.userinteraction; import de.ugoe.cs.tasktree.keyboardmaps.VirtualKey; //------------------------------------------------------------------------------------------------- /** * TODO comment * * @version $Revision: $ $Date: $ * @author 2011, last modified by $Author: $ */ //------------------------------------------------------------------------------------------------- public abstract class KeyInteraction implements Interaction { /** the key, that was actually pressed */ private VirtualKey mKey; //----------------------------------------------------------------------------------------------- /** * @param key */ //----------------------------------------------------------------------------------------------- public KeyInteraction(VirtualKey key) { super(); mKey = key; } //----------------------------------------------------------------------------------------------- /** * */ //----------------------------------------------------------------------------------------------- public VirtualKey getKey() { return mKey; } }