Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / signal / TmfTraceClosedSignal.java
index 94fc43f587a25c7314c1c7e430a959d865b5d860..c8449d5566be306ce0644ba6486985b81006ee6f 100644 (file)
@@ -1,54 +1,54 @@
-/*******************************************************************************\r
- * Copyright (c) 2010 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.signal;\r
-\r
-import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;\r
-import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;\r
-\r
-/**\r
- * Signal indicating a trace is now closed\r
- *\r
- * @version 1.0\r
- * @author Patrick Tasse\r
- */\r
-public class TmfTraceClosedSignal extends TmfSignal {\r
-\r
-    private final ITmfTrace fTrace;\r
-\r
-    /**\r
-     * Constructor for a new signal\r
-     *\r
-     * @param source\r
-     *            The object sending this signal\r
-     * @param trace\r
-     *            The trace being closed\r
-     */\r
-    public TmfTraceClosedSignal(Object source, ITmfTrace trace) {\r
-        super(source);\r
-        fTrace = trace;\r
-    }\r
-\r
-    /**\r
-     * Get a reference to the trace being closed\r
-     *\r
-     * @return The trace object\r
-     */\r
-    public ITmfTrace getTrace() {\r
-        return fTrace;\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        return "[TmfTraceClosedSignal (" + fTrace.getName() + ")]"; //$NON-NLS-1$ //$NON-NLS-2$\r
-    }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2010 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.signal;
+
+import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;
+import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
+
+/**
+ * Signal indicating a trace is now closed
+ *
+ * @version 1.0
+ * @author Patrick Tasse
+ */
+public class TmfTraceClosedSignal extends TmfSignal {
+
+    private final ITmfTrace fTrace;
+
+    /**
+     * Constructor for a new signal
+     *
+     * @param source
+     *            The object sending this signal
+     * @param trace
+     *            The trace being closed
+     */
+    public TmfTraceClosedSignal(Object source, ITmfTrace trace) {
+        super(source);
+        fTrace = trace;
+    }
+
+    /**
+     * Get a reference to the trace being closed
+     *
+     * @return The trace object
+     */
+    public ITmfTrace getTrace() {
+        return fTrace;
+    }
+
+    @Override
+    public String toString() {
+        return "[TmfTraceClosedSignal (" + fTrace.getName() + ")]"; //$NON-NLS-1$ //$NON-NLS-2$
+    }
+}
This page took 0.026739 seconds and 5 git commands to generate.