source: trunk/quest-core-tasktrees/src/main/java/de/ugoe/cs/quest/tasktrees/treeifc/TextInputInteractionTask.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

File size: 1.7 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: TextInputSequence.java,v $
3// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 10.06.2012 $
4// Project   : TaskTreeIfc
5// Creation  : 2012 by patrick
6// Copyright : Patrick Harms, 2012
7//-------------------------------------------------------------------------------------------------
8package de.ugoe.cs.quest.tasktrees.treeifc;
9
10//-------------------------------------------------------------------------------------------------
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: 10.06.2012$
15 * @author 2012, last modified by $Author: patrick$
16 */
17//-------------------------------------------------------------------------------------------------
18public interface TextInputInteractionTask extends InteractionTask
19{
20  //-----------------------------------------------------------------------------------------------
21  /**
22   * TODO: comment
23   *
24   * @return
25   */
26  //-----------------------------------------------------------------------------------------------
27  public TextInputInteractionTask clone();
28
29  //-----------------------------------------------------------------------------------------------
30  /**
31   *
32   */
33  //-----------------------------------------------------------------------------------------------
34  public String getEnteredText();
35
36  //-----------------------------------------------------------------------------------------------
37  /**
38   * TODO: comment
39   *
40   * @param string
41   */
42  //-----------------------------------------------------------------------------------------------
43  public void setEnteredText(String text);
44}
Note: See TracBrowser for help on using the repository browser.