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

Last change on this file since 655 was 655, checked in by pharms, 12 years ago
  • removed old copyright file header
File size: 512 bytes
Line 
1package de.ugoe.cs.quest.tasktrees.treeifc;
2
3/**
4 * TODO comment
5 *
6 * @version $Revision: $ $Date: 10.06.2012$
7 * @author 2012, last modified by $Author: patrick$
8 */
9public interface ITextInputEventTask extends IEventTask {
10   
11    /**
12     *
13     */
14    public String getEnteredText();
15
16    /**
17     * TODO: comment
18     *
19     * @param string
20     */
21    public void setEnteredText(String text);
22   
23    /**
24     * TODO: comment
25     *
26     * @return
27     */
28    public ITextInputEventTask clone();
29
30}
Note: See TracBrowser for help on using the repository browser.