source: trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/MFCEventType.java @ 647

Last change on this file since 647 was 619, checked in by pharms, 12 years ago
  • adapted implementation to now generate a full GUI model as well as concrete GUI interaction events
  • Property svn:mime-type set to text/plain
File size: 1007 bytes
Line 
1// Module    : $RCSfile: MFCEventType.java,v $
2// Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 21.08.2012 $
3// Project   : quest-plugin-mfc
4// Creation  : 2012 by pharms
5// Copyright : Patrick Harms, 2012
6package de.ugoe.cs.quest.plugin.mfc.eventcore;
7
8import de.ugoe.cs.quest.eventcore.IEventType;
9
10/**
11 * <p>
12 * TODO comment
13 * </p>
14 *
15 * @version $Revision: $ $Date: 21.08.2012$
16 * @author 2012, last modified by $Author: pharms$
17 */
18public class MFCEventType implements IEventType {
19
20    /** */
21    private static final long serialVersionUID = 1L;
22   
23    /** */
24    private WindowsMessageType messageType;
25
26    /**
27     * <p>
28     * TODO: comment
29     * </p>
30     *
31     * @param currentMessageType
32     */
33    public MFCEventType(WindowsMessageType messageType) {
34        this.messageType = messageType;
35    }
36
37    /* (non-Javadoc)
38     * @see de.ugoe.cs.quest.eventcore.IEventType#getName()
39     */
40    @Override
41    public String getName() {
42        return messageType.name();
43    }
44
45}
Note: See TracBrowser for help on using the repository browser.