Add copyright header.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / component / TmfThread.java
CommitLineData
6c13869b 1package org.eclipse.linuxtools.tmf.core.component;
9b635e61 2
6c13869b 3import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest.ExecutionType;
9b635e61
FC
4
5public class TmfThread extends Thread { // implements Comparator<ITmfDataRequest<?>> {
6
7 private final ExecutionType fExecType;
8
9 public TmfThread(ExecutionType execType) {
10 fExecType = execType;
11 }
12
13 public ExecutionType getExecType() {
14 return fExecType;
15 }
475743b7
FC
16
17 public void cancel() {
18 }
9b635e61
FC
19
20}
This page took 0.033683 seconds and 5 git commands to generate.