Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui / src / org / eclipse / linuxtools / internal / lttng2 / kernel / ui / views / controlflow / ControlFlowEvent.java
index 52d6f6784d6cae4ef20c90450506bd70e882806c..5651b1ca5adee2852c17ee520beb1fbbfc0f4625 100644 (file)
@@ -1,51 +1,51 @@
-/*******************************************************************************\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.internal.lttng2.kernel.ui.views.controlflow;\r
-\r
-import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;\r
-import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.TimeEvent;\r
-\r
-/**\r
- * Time Event specific to the control flow view\r
- */\r
-public class ControlFlowEvent extends TimeEvent {\r
-\r
-    private final int fStatus;\r
-\r
-    /**\r
-     * Constructor\r
-     *\r
-     * @param entry\r
-     *            The entry to which this time event is assigned\r
-     * @param time\r
-     *            The timestamp of this event\r
-     * @param duration\r
-     *            The duration of this event\r
-     * @param status\r
-     *            The status assigned to the event\r
-     */\r
-    public ControlFlowEvent(ITimeGraphEntry entry, long time, long duration,\r
-            int status) {\r
-        super(entry, time, duration);\r
-        fStatus = status;\r
-    }\r
-\r
-    /**\r
-     * Get this event's status\r
-     *\r
-     * @return The integer matching this status\r
-     */\r
-    public int getStatus() {\r
-        return fStatus;\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.internal.lttng2.kernel.ui.views.controlflow;
+
+import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeGraphEntry;
+import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.TimeEvent;
+
+/**
+ * Time Event specific to the control flow view
+ */
+public class ControlFlowEvent extends TimeEvent {
+
+    private final int fStatus;
+
+    /**
+     * Constructor
+     *
+     * @param entry
+     *            The entry to which this time event is assigned
+     * @param time
+     *            The timestamp of this event
+     * @param duration
+     *            The duration of this event
+     * @param status
+     *            The status assigned to the event
+     */
+    public ControlFlowEvent(ITimeGraphEntry entry, long time, long duration,
+            int status) {
+        super(entry, time, duration);
+        fStatus = status;
+    }
+
+    /**
+     * Get this event's status
+     *
+     * @return The integer matching this status
+     */
+    public int getStatus() {
+        return fStatus;
+    }
+}
This page took 0.030141 seconds and 5 git commands to generate.