X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Ftimeline%2FTimelineEvent.java;h=46decf5f93cf330bd08717b0f84350449292fb7a;hb=1bab34232d3270f5e13741c6fee9bec8627af2ac;hp=9f702e4c45e746b59d1382a913c8112b8a453e2c;hpb=72b00816f86e5d34d871c87fea76a94ffca25246;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 9f702e4c..46decf5f 100644 --- a/era.mi/src/era/mi/logic/timeline/TimelineEvent.java +++ b/era.mi/src/era/mi/logic/timeline/TimelineEvent.java @@ -1,25 +1,30 @@ -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. - * - * @author Fabian Stemmler - * - */ -public class TimelineEvent { - private final long timing; - - TimelineEvent(long timing) { - super(); - this.timing = timing; - } - - public long getTiming() { - return timing; - } - - public String toString() { - return "timestamp: " + timing; - } +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. + * + * @author Fabian Stemmler + * + */ +public class TimelineEvent +{ + private final long timing; + + TimelineEvent(long timing) + { + super(); + this.timing = timing; + } + + public long getTiming() + { + return timing; + } + + @Override + public String toString() + { + return "timestamp: " + timing; + } } \ No newline at end of file