source: trunk/quest-ui-core/src/de/ugoe/cs/quest/efg/data/EFGEvent.java @ 433

Last change on this file since 433 was 433, checked in by sherbold, 12 years ago
  • renamed packages to fit QUEST project structure
  • Property svn:mime-type set to text/plain
File size: 678 bytes
RevLine 
[432]1package de.ugoe.cs.quest.efg.data;
[197]2
[433]3import de.ugoe.cs.quest.eventcore.ReplayableEvent;
[197]4
[204]5/**
6 * <p>
7 * Convenience class for working with EFGEvents.
8 * </p>
9 *
10 * @author Steffen Herbold
11 * @version 1.0
12 */
[197]13public class EFGEvent extends ReplayableEvent<EFGReplayable> {
[204]14
[197]15        /**
16         * <p>
17         * Id for object serialization.
18         * </p>
19         */
20        private static final long serialVersionUID = 1L;
[204]21
22        /**
23         * <p>
24         * Constructor. Creates a new EFGEvent.
25         * </p>
26         *
27         * @param eventId
28         *            EventId of the event in the EFG and GUI files
29         */
30        public EFGEvent(String eventId) {
31                super(eventId);
32                this.addReplayEvent(new EFGReplayable(eventId));
[197]33        }
34}
Note: See TracBrowser for help on using the repository browser.