Contribute CNF based TMF project handling
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / parsers / IParserProvider.java
index c47964c0bf2dacb8b978f15a3aedff5ceab52087..f8678e4133615de23a842815391e42436903e5ce 100644 (file)
@@ -35,7 +35,7 @@ public interface IParserProvider {
         * @param resource the resource\r
         * @return a trace instance or null if the parser id is not handled by this parser provider\r
         */\r
-    public ITmfTrace getTraceForParser(String parser, IResource resource);\r
+    public ITmfTrace<?> getTraceForParser(String parser, IResource resource);\r
     \r
        /**\r
         * Return a trace instance for a resource given a content type id\r
@@ -44,7 +44,7 @@ public interface IParserProvider {
         * @param resource the resource\r
         * @return a trace instance or null if the content type id is not handled by this parser provider\r
         */\r
-    public ITmfTrace getTraceForContentType(String contentTypeId, IResource resource);\r
+    public ITmfTrace<?> getTraceForContentType(String contentTypeId, IResource resource);\r
     \r
        /**\r
         * Return the parser map for this parser provider\r
@@ -90,6 +90,6 @@ public interface IParserProvider {
         * @param cacheSize the desired cache size for the table\r
         * @return an events table instance or null if the trace is not handled by this parser provider\r
         */\r
-    public TmfEventsTable getEventsTable(ITmfTrace trace, Composite parent, int cacheSize);\r
+    public TmfEventsTable getEventsTable(ITmfTrace<?> trace, Composite parent, int cacheSize);\r
 \r
 }\r
This page took 0.024476 seconds and 5 git commands to generate.