X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Ftimeline%2FTimelineEvent.java;h=46decf5f93cf330bd08717b0f84350449292fb7a;hb=c18c04011cab0040c2287608eeefc9c3cc4536c2;hp=c5fe16cc1a2c5c2f33b0059819303f19933ce344;hpb=7f37c7b2431309e49a0ee116d1ee6c173272e926;p=Mograsim.git diff --git a/era.mi/src/era/mi/logic/timeline/TimelineEvent.java b/era.mi/src/era/mi/logic/timeline/TimelineEvent.java index c5fe16cc..46decf5f 100644 --- a/era.mi/src/era/mi/logic/timeline/TimelineEvent.java +++ b/era.mi/src/era/mi/logic/timeline/TimelineEvent.java @@ -1,14 +1,16 @@ package era.mi.logic.timeline; /** - * A class that stores all relevant information about an event in the {@link Timeline}. Currently, there is not much relevant information to store. + * A class that stores all relevant information about an event in the {@link Timeline}. Currently, there is not much relevant information to + * store. + * * @author Fabian Stemmler * */ public class TimelineEvent { private final long timing; - + TimelineEvent(long timing) { super(); @@ -19,7 +21,8 @@ public class TimelineEvent { return timing; } - + + @Override public String toString() { return "timestamp: " + timing;