source: trunk/quest-core-events-patrick/src/main/java/de/ugoe/cs/quest/eventcore/userinteraction/Interaction.java @ 449

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

Initial import.

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: Interaction.java,v $
3// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 06.11.2011 10:26:33 $
4// Project   : TaskTreePerformanceTest
5// Creation  : 2011 by Patrick
6// Copyright : Patrick Harms, 2011
7//-------------------------------------------------------------------------------------------------
8
9package de.ugoe.cs.quest.eventcore.userinteraction;
10
11
12//-------------------------------------------------------------------------------------------------
13/**
14 * TODO comment
15 *
16 * @version $Revision: $ $Date: $
17 * @author  2011, last modified by $Author: $
18 */
19//-------------------------------------------------------------------------------------------------
20public interface Interaction
21{
22  //-----------------------------------------------------------------------------------------------
23  /**
24   * @return
25   */
26  //-----------------------------------------------------------------------------------------------
27  public String getName();
28
29  //-----------------------------------------------------------------------------------------------
30  /**
31   * @return
32   */
33  //-----------------------------------------------------------------------------------------------
34  public boolean startsLogicalSequence();
35
36  //-----------------------------------------------------------------------------------------------
37  /**
38   * @return
39   */
40  //-----------------------------------------------------------------------------------------------
41  public boolean finishesLogicalSequence();
42
43}
Note: See TracBrowser for help on using the repository browser.