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

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
  • Property svn:executable set to *
File size: 582 bytes
Line 
1package de.ugoe.cs.quest.eventcore.gui;
2
3import de.ugoe.cs.quest.eventcore.IEventType;
4
5/**
6 * <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.
9 * </p>
10 *
11 * @version $Revision: $ $Date: $
12 * @author 2011, last modified by $Author: $
13 */
14public interface IInteraction extends IEventType
15{
16    /**
17     * @return
18     */
19    public boolean startsLogicalSequence();
20
21    /**
22     * @return
23     */
24    public boolean finishesLogicalSequence();
25
26}
Note: See TracBrowser for help on using the repository browser.