source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/gui/TextInput.java @ 544

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

first version of interaction types for GUI events

File size: 1.3 KB
Line 
1// Module    : $RCSfile: TextSelection.java,v $
2// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 27.11.2011 18:11:29 $
3// Project   : TaskTreePerformanceTest
4// Creation  : 2011 by Patrick
5// Copyright : Patrick Harms, 2011
6
7package de.ugoe.cs.quest.eventcore.gui;
8
9/**
10 * TODO comment
11 *
12 * @version $Revision: $ $Date: $
13 * @author 2011, last modified by $Author: $
14 */
15public class TextInput implements IInteraction {
16
17    /**  */
18    private static final long serialVersionUID = 1L;
19
20    /*
21     * (non-Javadoc)
22     *
23     * @see de.harms.attef.userinteraction.Interaction#getName()
24     */
25    public String getName() {
26        return "TextInput";
27    }
28
29    /*
30     * (non-Javadoc)
31     *
32     * @see java.lang.Object#toString()
33     */
34    @Override
35    public String toString() {
36        return "text input";
37    }
38
39    /*
40     * (non-Javadoc)
41     *
42     * @see de.harms.attef.userinteraction.Interaction#startsLogicalSequence()
43     */
44    public boolean startsLogicalSequence() {
45        return false;
46    }
47
48    /*
49     * (non-Javadoc)
50     *
51     * @see de.harms.attef.userinteraction.Interaction#finishesLogicalSequence()
52     */
53    public boolean finishesLogicalSequence() {
54        return false;
55    }
56
57}
Note: See TracBrowser for help on using the repository browser.