tmf: Add generics to ITmfEventAspect
[deliverable/tracecompass.git] / pcap / org.eclipse.tracecompass.tmf.pcap.core / src / org / eclipse / tracecompass / internal / tmf / pcap / core / trace / PcapTrace.java
index 624334cf82acd7042b8c826d06139cd51cad79a7..277f8b89d4b4a68323a6a1f38913fede5ba71996 100644 (file)
@@ -69,7 +69,7 @@ public class PcapTrace extends TmfTrace implements ITmfPropertiesProvider {
     /** pcap trace type id as defined in plugin.xml */
     public static final String TRACE_TYPE_ID = "org.eclipse.linuxtools.tmf.pcap.core.pcaptrace"; //$NON-NLS-1$
 
-    private static final Collection<ITmfEventAspect> PCAP_ASPECTS =
+    private static final Collection<ITmfEventAspect<?>> PCAP_ASPECTS =
             ImmutableList.of(
                     ITmfEventAspect.BaseAspects.TIMESTAMP,
                     PcapSourceAspect.INSTANCE,
@@ -128,7 +128,7 @@ public class PcapTrace extends TmfTrace implements ITmfPropertiesProvider {
     }
 
     @Override
-    public Iterable<ITmfEventAspect> getEventAspects() {
+    public Iterable<ITmfEventAspect<?>> getEventAspects() {
         return PCAP_ASPECTS;
     }
 
This page took 0.063423 seconds and 5 git commands to generate.