Ignore:
Timestamp:
09/06/12 16:47:00 (12 years ago)
Author:
sherbold
Message:
  • code documentation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/gui/KeyInteraction.java

    r655 r786  
     1 
    12package de.ugoe.cs.quest.eventcore.gui; 
    23 
     
    45 
    56/** 
    6  * TODO comment 
     7 * <p> 
     8 * Base class for all keyboard interaction event types. 
     9 * </p> 
    710 *  
    8  * @version $Revision: $ $Date: $ 
    9  * @author 2011, last modified by $Author: $ 
     11 * @version 1.0 
     12 * @author Patrick Harms 
    1013 */ 
    1114public abstract class KeyInteraction implements IInteraction { 
    1215 
    13     /**  */ 
     16    /** 
     17     * <p> 
     18     * Id for object serialization. 
     19     * </p> 
     20     */ 
    1421    private static final long serialVersionUID = 1L; 
    1522 
    16     /** the key, that was actually pressed */ 
     23    /** 
     24     * <p> 
     25     * the key associated with the interaction 
     26     * </p> 
     27     */ 
    1728    private VirtualKey key; 
    1829 
    1930    /** 
     31     * <p> 
     32     * Constructor. Creates a new KeyInteraction. 
     33     * </p> 
     34     *  
    2035     * @param key 
     36     *            key associated with the interaction 
    2137     */ 
    2238    public KeyInteraction(VirtualKey key) { 
     
    2642 
    2743    /** 
     44     * <p> 
     45     * Returns the key associated with the interaction. 
     46     * </p> 
    2847     *  
     48     * @return the key 
    2949     */ 
    3050    public VirtualKey getKey() { 
Note: See TracChangeset for help on using the changeset viewer.