tmf: Make ITmfGraphEntry.getChildren() return a List
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / widgetStubs / org / eclipse / linuxtools / tmf / ui / widgets / timegraph / test / stub / model / TraceImpl.java
index 210c5b0c8ce71dd670234c77346e3444ddf4aa8f..d78ec332493e3d7529715a38a0f466abdead4024 100644 (file)
@@ -12,6 +12,7 @@
 package org.eclipse.linuxtools.tmf.ui.widgets.timegraph.test.stub.model;
 
 import java.util.Iterator;
+import java.util.List;
 import java.util.Vector;
 
 import org.eclipse.linuxtools.tmf.ui.widgets.timegraph.model.ITimeEvent;
@@ -98,7 +99,7 @@ public class TraceImpl implements ITimeGraphEntry {
     }
 
     @Override
-    public ITimeGraphEntry[] getChildren() {
+    public List<ITimeGraphEntry> getChildren() {
         return null;
     }
 
This page took 0.032503 seconds and 5 git commands to generate.