Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / signal / TmfClearExperimentSignal.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.core.signal;
14
15 /**
16 * Clear experiment signal
17 *
18 * @version 1.0
19 * @author Francois Chouinard
20 * @since 2.0
21 */
22 public class TmfClearExperimentSignal extends TmfSignal {
23
24 /**
25 * @param source the signal source
26 */
27 public TmfClearExperimentSignal(Object source) {
28 super(source);
29 }
30
31 /* (non-Javadoc)
32 * @see java.lang.Object#toString()
33 */
34 @Override
35 @SuppressWarnings("nls")
36 public String toString() {
37 return "[TmfClearExperimentSignal]";
38 }
39 }
This page took 0.033578 seconds and 5 git commands to generate.