Re-structure LTTng sub-project as per the Linux Tools guidelines
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / component / TmfThread.java
1 package org.eclipse.linuxtools.tmf.core.component;
2
3 import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest.ExecutionType;
4
5 public 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 }
16
17 public void cancel() {
18 }
19
20 }
This page took 0.072523 seconds and 5 git commands to generate.