Reformatted everything. Eclipse built-in Linewrapping/Comments 140 chars
[Mograsim.git] / era.mi / src / era / mi / logic / timeline / TimelineEvent.java
index c5fe16c..9d33482 100644 (file)
@@ -1,27 +1,25 @@
 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
-{
+public class TimelineEvent {
        private final long timing;
-       
-       TimelineEvent(long timing)
-       {
+
+       TimelineEvent(long timing) {
                super();
                this.timing = timing;
        }
 
-       public long getTiming()
-       {
+       public long getTiming() {
                return timing;
        }
-       
-       public String toString()
-       {
+
+       public String toString() {
                return "timestamp: " + timing;
        }
 }
\ No newline at end of file