source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/IEventTarget.java @ 541

Last change on this file since 541 was 541, checked in by sherbold, 12 years ago
  • beginning of the complete rewriting of the event core. The string representations for the event type and event target are replaced by interfaces IEventType and IEventTarget which have to be implemented by platform level implementations accordingly. Note, that this is just the first commit of this major refactoring of QUEST and it will break a lot of the source code.
  • Property svn:mime-type set to text/plain
File size: 252 bytes
Line 
1
2package de.ugoe.cs.quest.eventcore;
3
4/**
5 *
6 * <p>
7 * TODO comment
8 * </p>
9 *
10 * @version $Revision: $ $Date: Aug 16, 2012$
11 * @author 2012, last modified by $Author: sherbold$
12 */
13public interface IEventTarget {
14
15    public String getPlatform();
16}
Note: See TracBrowser for help on using the repository browser.