source: trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/plugin/guitar/eventcore/GUITAREventType.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: 831 bytes
Line 
1package de.ugoe.cs.quest.plugin.guitar.eventcore;
2
3import de.ugoe.cs.quest.eventcore.IEventType;
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 GUITAREventType implements IEventType {
15
16    /**  */
17    private static final long serialVersionUID = 1L;
18   
19    String guitarEventId;
20   
21    public GUITAREventType(String eventId) {
22        this.guitarEventId = eventId;
23    }
24   
25    /* (non-Javadoc)
26     * @see de.ugoe.cs.quest.eventcore.IEventType#getName()
27     */
28    @Override
29    public String getName() {
30        return "GUITAREventType";
31    }
32   
33    /*
34     * (non-Javadoc)
35     * @see java.lang.Object#toString()
36     */
37    @Override
38    public String toString() {
39        return guitarEventId;
40    }
41
42}
Note: See TracBrowser for help on using the repository browser.