X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Ftimeline%2FTimelineEvent.java;h=cc37c992fe1caeda4e0339848a85dfdc602d035b;hb=f2cd90fa2b844507bc9697d3af1f3e18aac80b37;hp=68403499ad116809e170f5b6fcef6a67282052a4;hpb=9ea0dc9cec7c1fd6adba4bb3806e328470416bd9;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 68403499..cc37c992 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;