source: trunk/quest-core-tasktrees/src/main/java/de/ugoe/cs/quest/tasktrees/treeifc/InteractionTask.java @ 451

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

refactored to integrate it into QUEST

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: InteractionTask.java,v $
3// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 08.11.2011 19:44:52 $
4// Project   : TaskTreePerformanceTest
5// Creation  : 2011 by Patrick
6// Copyright : Patrick Harms, 2011
7//-------------------------------------------------------------------------------------------------
8
9package de.ugoe.cs.quest.tasktrees.treeifc;
10
11import de.ugoe.cs.quest.eventcore.guimodel.GUIElement;
12import de.ugoe.cs.quest.eventcore.userinteraction.Interaction;
13
14//-------------------------------------------------------------------------------------------------
15/**
16 * TODO comment
17 *
18 * @version $Revision: $ $Date: $
19 * @author  2011, last modified by $Author: $
20 */
21//-------------------------------------------------------------------------------------------------
22public interface InteractionTask extends TaskTreeNode
23{
24  //-----------------------------------------------------------------------------------------------
25  /**
26   * @return Returns the interaction.
27   */
28  //-----------------------------------------------------------------------------------------------
29  public Interaction getInteraction();
30
31  //-----------------------------------------------------------------------------------------------
32  /**
33   * @return Returns the GUIElement.
34   */
35  //-----------------------------------------------------------------------------------------------
36  public GUIElement getGUIElement();
37
38}
Note: See TracBrowser for help on using the repository browser.