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

Last change on this file since 557 was 557, checked in by pharms, 12 years ago
  • adapted task tree creation stuff to more general event handling
File size: 732 bytes
Line 
1// Module    : $RCSfile: TextInputSequence.java,v $
2// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 10.06.2012 $
3// Project   : TaskTreeIfc
4// Creation  : 2012 by patrick
5// Copyright : Patrick Harms, 2012
6
7
8package de.ugoe.cs.quest.tasktrees.treeifc;
9
10/**
11 * TODO comment
12 *
13 * @version $Revision: $ $Date: 10.06.2012$
14 * @author 2012, last modified by $Author: patrick$
15 */
16public interface ITextInputEventTask extends IEventTask {
17   
18    /**
19     *
20     */
21    public String getEnteredText();
22
23    /**
24     * TODO: comment
25     *
26     * @param string
27     */
28    public void setEnteredText(String text);
29   
30    /**
31     * TODO: comment
32     *
33     * @return
34     */
35    public ITextInputEventTask clone();
36
37}
Note: See TracBrowser for help on using the repository browser.