TMF: Change visibility of TmfEventMatching methods
authorGeneviève Bastien <gbastien+lttng@versatic.net>
Fri, 13 Feb 2015 16:02:06 +0000 (11:02 -0500)
committerGenevieve Bastien <gbastien+lttng@versatic.net>
Thu, 12 Mar 2015 17:59:36 +0000 (13:59 -0400)
So that they match what was previously in the now gone class
TmfNetworkEventMatching.

Change-Id: I242cae29ca1da1306b20fffae331ba42bafa507c
Signed-off-by: Geneviève Bastien <gbastien+lttng@versatic.net>
Reviewed-on: https://git.eclipse.org/r/41840
Reviewed-by: Hudson CI
Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/event/matching/TmfEventMatching.java

index 094c7477f5d844d23df650be5720dc0f9c88d868..119c8f225c2b36a73bec13f920841707ad47949c 100644 (file)
@@ -162,8 +162,10 @@ public class TmfEventMatching implements ITmfEventMatching {
      * Method that initializes any data structure for the event matching. It
      * also assigns to each trace an event matching definition instance that
      * applies to the trace
+     *
+     * @since 1.0
      */
-    protected void initMatching() {
+    public void initMatching() {
         // Initialize the matching infrastructure (unmatched event lists)
         fUnmatchedIn.clear();
         fUnmatchedOut.clear();
@@ -216,7 +218,7 @@ public class TmfEventMatching implements ITmfEventMatching {
      *            The monitor for the synchronization job
      * @since 1.0
      */
-    protected void matchEvent(ITmfEvent event, ITmfTrace trace, @NonNull IProgressMonitor monitor) {
+    public void matchEvent(ITmfEvent event, ITmfTrace trace, @NonNull IProgressMonitor monitor) {
         ITmfMatchEventDefinition def = null;
         Direction evType = null;
         for (ITmfMatchEventDefinition oneDef : getEventDefinitions(event.getTrace())) {
This page took 0.02842 seconds and 5 git commands to generate.