The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.logic.core / src / net / mograsim / logic / core / timeline / TimelineEvent.java
1 package net.mograsim.logic.core.timeline;
2
3 /**
4  * A class that stores all relevant information about an event in the {@link Timeline}. Currently, there is not much relevant information to
5  * store.
6  * 
7  * @author Fabian Stemmler
8  *
9  */
10 public class TimelineEvent
11 {
12         private final long timing;
13
14         TimelineEvent(long timing)
15         {
16                 super();
17                 this.timing = timing;
18         }
19
20         public long getTiming()
21         {
22                 return timing;
23         }
24
25         @Override
26         public String toString()
27         {
28                 return "timestamp: " + timing;
29         }
30 }