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

    r655 r786  
     1 
    12package de.ugoe.cs.quest.eventcore.gui; 
    23 
     
    56/** 
    67 * <p> 
    7  * An interaction is a special event type which represents the interaction of a user with an 
    8  * element of a GUI. An example is a mouse click on a button. 
     8 * An interaction is a special event type which represents the interaction of a user with an element 
     9 * of a GUI. An example is a mouse click on a button. 
    910 * </p> 
    1011 *  
    11  * @version $Revision: $ $Date: $ 
    12  * @author 2011, last modified by $Author: $ 
     12 * @version 1.0 
     13 * @author Patrick Harms 
    1314 */ 
    14 public interface IInteraction extends IEventType 
    15 { 
     15public interface IInteraction extends IEventType { 
    1616    /** 
    17      * @return 
     17     * <p> 
     18     * Determines whether an event type starts a logical sequence, i.e., a task. 
     19     * </p> 
     20     *  
     21     * @return true if a logical sequence is started; false otherwise 
    1822     */ 
    1923    public boolean startsLogicalSequence(); 
    2024 
    2125    /** 
    22      * @return 
     26     * <p> 
     27     * Determines whether an event type finishes a logical sequence, i.e., a task. 
     28     * </p> 
     29     *  
     30     * @return true if a logical sequence is finished; false otherwise 
    2331     */ 
    2432    public boolean finishesLogicalSequence(); 
Note: See TracChangeset for help on using the changeset viewer.