Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / TimeGraphRangeUpdateEvent.java
index 2013b1bcebcb7c532cb5bec4004b011683acd529..1d59f51e3ae32d6d404f7d9a3c4afa3e115d89e5 100644 (file)
@@ -1,71 +1,71 @@
-/*******************************************************************************\r
- * Copyright (c) 2012 Ericsson\r
- *\r
- * All rights reserved. This program and the accompanying materials are\r
- * made available under the terms of the Eclipse Public License v1.0 which\r
- * accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *   Patrick Tasse - Initial API and implementation\r
- *******************************************************************************/\r
-\r
-package org.eclipse.linuxtools.tmf.ui.widgets.timegraph;\r
-\r
-import java.util.EventObject;\r
-\r
-/**\r
- * Notifier for the time graph that the time range has been updated.\r
- *\r
- * @version 1.0\r
- * @author Patrick Tasse\r
- */\r
-public class TimeGraphRangeUpdateEvent extends EventObject {\r
-\r
-    /**\r
-     * Default serial version UID for this class.\r
-     * @since 1.0\r
-     */\r
-    private static final long serialVersionUID = 1L;\r
-\r
-    /**\r
-     * The start time.\r
-     */\r
-    private final long fStartTime;\r
-\r
-    /**\r
-     * The end time.\r
-     */\r
-    private final long fEndTime;\r
-\r
-    /**\r
-     * Standard constructor\r
-     *\r
-     * @param source\r
-     *            The source of this event\r
-     * @param startTime\r
-     *            The start time\r
-     * @param endTime\r
-     *            The end time\r
-     */\r
-    public TimeGraphRangeUpdateEvent(Object source, long startTime, long endTime) {\r
-        super(source);\r
-        fStartTime = startTime;\r
-        fEndTime = endTime;\r
-    }\r
-\r
-    /**\r
-     * @return the start time\r
-     */\r
-    public long getStartTime() {\r
-        return fStartTime;\r
-    }\r
-\r
-    /**\r
-     * @return the end time\r
-     */\r
-    public long getEndTime() {\r
-        return fEndTime;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2012 Ericsson
+ *
+ * All rights reserved. This program and the accompanying materials are
+ * made available under the terms of the Eclipse Public License v1.0 which
+ * accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *   Patrick Tasse - Initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.linuxtools.tmf.ui.widgets.timegraph;
+
+import java.util.EventObject;
+
+/**
+ * Notifier for the time graph that the time range has been updated.
+ *
+ * @version 1.0
+ * @author Patrick Tasse
+ */
+public class TimeGraphRangeUpdateEvent extends EventObject {
+
+    /**
+     * Default serial version UID for this class.
+     * @since 1.0
+     */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * The start time.
+     */
+    private final long fStartTime;
+
+    /**
+     * The end time.
+     */
+    private final long fEndTime;
+
+    /**
+     * Standard constructor
+     *
+     * @param source
+     *            The source of this event
+     * @param startTime
+     *            The start time
+     * @param endTime
+     *            The end time
+     */
+    public TimeGraphRangeUpdateEvent(Object source, long startTime, long endTime) {
+        super(source);
+        fStartTime = startTime;
+        fEndTime = endTime;
+    }
+
+    /**
+     * @return the start time
+     */
+    public long getStartTime() {
+        return fStartTime;
+    }
+
+    /**
+     * @return the end time
+     */
+    public long getEndTime() {
+        return fEndTime;
+    }
+
+}
This page took 0.028958 seconds and 5 git commands to generate.