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

Last change on this file since 552 was 552, checked in by pharms, 12 years ago

removed last dashes of old comment format

  • Property svn:executable set to *
File size: 822 bytes
Line 
1// Module    : $RCSfile: Interaction.java,v $
2// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 06.11.2011 10:26:33 $
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.quest.eventcore.IEventType;
10
11/**
12 * <p>
13 * An interaction is a special event type which represents the interaction of a user with an
14 * element of a GUI. An example is a mouse click on a button.
15 * </p>
16 *
17 * @version $Revision: $ $Date: $
18 * @author 2011, last modified by $Author: $
19 */
20public interface IInteraction extends IEventType
21{
22    /**
23     * @return
24     */
25    public boolean startsLogicalSequence();
26
27    /**
28     * @return
29     */
30    public boolean finishesLogicalSequence();
31
32}
Note: See TracBrowser for help on using the repository browser.