tmf: Avoid hanging when waiting on a cancelled analysis
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / ITmfEventParser.java
index 011311dbdd4c63d04f493a7da47430fc12bdabbb..a9a37188ff5a524857a54e36531bcd481424d545 100644 (file)
@@ -18,15 +18,13 @@ import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 /**
  * The generic trace parser in TMF.
  *
- * @param <T> The trace event type
- *
  * @version 1.0
  * @author Francois Chouinard
  *
  * @see ITmfEvent
  * @see ITmfContext
  */
-public interface ITmfEventParser<T extends ITmfEvent> {
+public interface ITmfEventParser {
 
        /**
         * Parses the trace event referenced by the context.
@@ -35,6 +33,6 @@ public interface ITmfEventParser<T extends ITmfEvent> {
         * @param context the trace context
         * @return a parsed event (null if none)
         */
-       public T parseEvent(ITmfContext context);
+       ITmfEvent parseEvent(ITmfContext context);
 
 }
This page took 0.024313 seconds and 5 git commands to generate.