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/MouseDoubleClick.java

    r681 r786  
     1 
    12package de.ugoe.cs.quest.eventcore.gui; 
    23 
    34/** 
    4  * TODO comment 
     5 * <p> 
     6 * Event type for a double click, i.e., pressing the mouse, releasing it, pressing it, and releasing 
     7 * it again right away. 
     8 * </p> 
    59 *  
    6  * @version $Revision: $ $Date: $ 
    7  * @author 2011, last modified by $Author: $ 
     10 * @version 1.0 
     11 * @author Patrick Harms 
    812 */ 
    913public class MouseDoubleClick extends MouseButtonInteraction { 
    1014 
    11     /**  */ 
     15    /** 
     16     * <p> 
     17     * Id for object serialization. 
     18     * </p> 
     19     */ 
    1220    private static final long serialVersionUID = 1L; 
    1321 
    1422    /** 
    15      * @param button 
     23     * <p> 
     24     * Constructor. Creates a new {@link MouseDoubleClick} event type. 
     25     * </p> 
     26     *  
     27     * @see MouseButtonInteraction#MouseButtonInteraction(Button) 
    1628     */ 
    1729    public MouseDoubleClick(Button button) { 
Note: See TracChangeset for help on using the changeset viewer.