Contribute CNF based TMF project handling
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / stubs / org / eclipse / linuxtools / tmf / trace / TmfTraceStub.java
index 16ef92042e50d563636411997d1e63b12096bb7a..b3388ff8fe2b77dc62e5e9c08664d565af438b30 100644 (file)
@@ -115,7 +115,7 @@ public class TmfTraceStub extends TmfTrace<TmfEvent> {
     }
  
     @Override
-       public ITmfTrace createTraceCopy() {
+       public ITmfTrace copy() {
                ITmfTrace returnedValue = null;
                returnedValue = clone();
                return returnedValue;
@@ -135,7 +135,7 @@ public class TmfTraceStub extends TmfTrace<TmfEvent> {
 
        @Override
        @SuppressWarnings("unchecked")
-       public TmfContext seekLocation(ITmfLocation<?> location) {
+       public TmfContext seekLocation(ITmfLocation location) {
            fLock.lock();
         try {
             if (fTrace != null) {
@@ -183,7 +183,8 @@ public class TmfTraceStub extends TmfTrace<TmfEvent> {
     }
 
     @Override
-    public double getLocationRatio(ITmfLocation<?> location) {
+    @SuppressWarnings("rawtypes")
+    public double getLocationRatio(ITmfLocation location) {
         fLock.lock();
         try {
             if (fTrace != null) {
This page took 0.024426 seconds and 5 git commands to generate.