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

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

initial import after refactoring of module structure with Steffen

  • 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.tasktree.guimodel.GUIElement;
12import de.ugoe.cs.tasktree.userinteraction.Interaction;
13
14
15//-------------------------------------------------------------------------------------------------
16/**
17 * TODO comment
18 *
19 * @version $Revision: $ $Date: $
20 * @author  2011, last modified by $Author: $
21 */
22//-------------------------------------------------------------------------------------------------
23public interface InteractionTask extends TaskTreeNode
24{
25  //-----------------------------------------------------------------------------------------------
26  /**
27   * @return Returns the interaction.
28   */
29  //-----------------------------------------------------------------------------------------------
30  public Interaction getInteraction();
31
32  //-----------------------------------------------------------------------------------------------
33  /**
34   * @return Returns the GUIElement.
35   */
36  //-----------------------------------------------------------------------------------------------
37  public GUIElement getGUIElement();
38
39}
Note: See TracBrowser for help on using the repository browser.