source: trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/plugin/guitar/eventcore/GUITAREventTarget.java @ 556

Last change on this file since 556 was 556, checked in by sherbold, 12 years ago
  • adapted GUITAR plugin to new event core
  • Property svn:mime-type set to text/plain
File size: 928 bytes
Line 
1package de.ugoe.cs.quest.plugin.guitar.eventcore;
2
3import de.ugoe.cs.quest.eventcore.IEventTarget;
4
5/**
6 *
7 * <p>
8 * TODO comment
9 * </p>
10 *
11 * @version $Revision: $ $Date: Aug 16, 2012$
12 * @author 2012, last modified by $Author: sherbold$
13 */
14public class GUITAREventTarget implements IEventTarget {
15
16    private static final long serialVersionUID = 1L;
17   
18    String widgetId;
19   
20    public GUITAREventTarget(String widgetId) {
21        this.widgetId = widgetId;
22    }
23
24    /* (non-Javadoc)
25     * @see de.ugoe.cs.quest.eventcore.IEventTarget#getPlatform()
26     */
27    @Override
28    public String getPlatform() {
29        // TODO Auto-generated method stub
30        System.out.println("TODO: implement GUITAREventTarget.getPlatform ");
31        return null;
32    }
33   
34    /*
35     * (non-Javadoc)
36     * @see java.lang.Object#toString()
37     */
38    @Override
39    public String toString() {
40        return widgetId;
41    }
42
43}
Note: See TracBrowser for help on using the repository browser.