timing: Add default implementations of deprecated methods
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui.swtbot.tests / src / org / eclipse / tracecompass / analysis / timing / ui / swtbot / tests / callgraph / CallGraphDensityViewTest.java
index a7e0d35e5ad5d2e012cb21cff38d199f64261339..9be7937409712698c98be1be67309d5bd6723575 100644 (file)
@@ -14,7 +14,6 @@ import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assert.fail;
 
-import java.util.List;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.TimeUnit;
 
@@ -66,13 +65,14 @@ public class CallGraphDensityViewTest extends AggregationTreeTest {
     private static final String CALLGRAPHDENSITY_ID = CallGraphDensityView.ID;
 
     private final @NonNull ISegmentStoreDensityViewerDataListener fSyncListener = new ISegmentStoreDensityViewerDataListener() {
+
         @Override
-        public void dataChanged(List<ISegment> newData) {
+        public void viewDataChanged(@NonNull Iterable<? extends @NonNull ISegment> newData) {
             fLatch.countDown();
         }
 
         @Override
-        public void dataSelectionChanged(@Nullable List<@NonNull ISegment> newSelectionData) {
+        public void selectedDataChanged(@Nullable Iterable<? extends @NonNull ISegment> newSelectionData) {
             // do nothing
         }
 
This page took 0.025848 seconds and 5 git commands to generate.