Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / signal / TmfTraceParserUpdatedSignal.java
index f0bb232a97c9d1af6206b93f30ba9e9338a920ae..bec4fb76179143b8bce41203f20f93d5e49406a2 100644 (file)
@@ -1,53 +1,53 @@
-/*******************************************************************************\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.core.resources.IResource;\r
-import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;\r
-\r
-/**\r
- * Signal indicating the trace parser has finished reading a chunk, so the\r
- * parsing has been updated.\r
- *\r
- * @version 1.0\r
- * @author Patrick Tasse\r
- */\r
-public class TmfTraceParserUpdatedSignal extends TmfSignal {\r
-\r
-    private final IResource fTraceResource;\r
-\r
-    /**\r
-     * Constructor for the signal.\r
-     *\r
-     * @param source The object sending this signal\r
-     * @param traceResource The trace resource concerning this signal\r
-     */\r
-    public TmfTraceParserUpdatedSignal(Object source, IResource traceResource) {\r
-        super(source);\r
-        fTraceResource = traceResource;\r
-    }\r
-\r
-    /**\r
-     * Get the trace resource object of this signal.\r
-     *\r
-     * @return The trace resource.\r
-     */\r
-    public IResource getTraceResource() {\r
-        return fTraceResource;\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        return "[TmfTraceParserUpdatedSignal (" + fTraceResource.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.core.resources.IResource;
+import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;
+
+/**
+ * Signal indicating the trace parser has finished reading a chunk, so the
+ * parsing has been updated.
+ *
+ * @version 1.0
+ * @author Patrick Tasse
+ */
+public class TmfTraceParserUpdatedSignal extends TmfSignal {
+
+    private final IResource fTraceResource;
+
+    /**
+     * Constructor for the signal.
+     *
+     * @param source The object sending this signal
+     * @param traceResource The trace resource concerning this signal
+     */
+    public TmfTraceParserUpdatedSignal(Object source, IResource traceResource) {
+        super(source);
+        fTraceResource = traceResource;
+    }
+
+    /**
+     * Get the trace resource object of this signal.
+     *
+     * @return The trace resource.
+     */
+    public IResource getTraceResource() {
+        return fTraceResource;
+    }
+
+    @Override
+    public String toString() {
+        return "[TmfTraceParserUpdatedSignal (" + fTraceResource.getName() + ")]"; //$NON-NLS-1$ //$NON-NLS-2$
+    }
+}
This page took 0.047982 seconds and 5 git commands to generate.