Change visibility of loadTrace to protected
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 27 Oct 2016 21:33:05 +0000 (17:33 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Fri, 11 Nov 2016 15:44:16 +0000 (10:44 -0500)
Load trace can now be used by subclass to sync to a specific trace.

Change-Id: I2257f765ac8e23dd1a15e07df4a3dd514208a391
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/timegraph/AbstractTimeGraphView.java

index a04b0592e6a9f2cb9d060c7a199d8b8ced742a9c..c3cfd62a284ed009ab4c00e048d4fcc1ea6399bb 100644 (file)
@@ -1619,7 +1619,14 @@ public abstract class AbstractTimeGraphView extends TmfView implements ITmfTimeA
     // Internal
     // ------------------------------------------------------------------------
 
-    private void loadTrace(final ITmfTrace trace) {
+    /**
+     * Load a trace
+     *
+     * @param trace
+     *            The trace to be loaded
+     * @since 2.2
+     */
+    protected void loadTrace(final ITmfTrace trace) {
         if (fZoomThread != null) {
             fZoomThread.cancel();
             fZoomThread = null;
This page took 0.025314 seconds and 5 git commands to generate.