analysis: Change visibility modifiers in segment store analysis module
authorBernd Hufmann <Bernd.Hufmann@ericsson.com>
Mon, 26 Oct 2015 13:18:05 +0000 (09:18 -0400)
committerBernd Hufmann <bernd.hufmann@ericsson.com>
Mon, 26 Oct 2015 15:06:17 +0000 (11:06 -0400)
Change-Id: I3c16dceccf12a7124898116bee7dd6653e701fd0
Signed-off-by: Bernd Hufmann <Bernd.Hufmann@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/58925
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
analysis/org.eclipse.tracecompass.analysis.timing.core/src/org/eclipse/tracecompass/analysis/timing/core/segmentstore/AbstractSegmentStoreAnalysisModule.java

index 6f513e23da87cb9868f457b81e04b61ea0ab02c8..ba5fff2d4a7ff7f34aa24d281e922bfc501fe3fe 100644 (file)
@@ -67,7 +67,7 @@ public abstract class AbstractSegmentStoreAnalysisModule extends TmfAbstractAnal
      * Returns all the listeners
      * @return latency listners
      */
-    public Iterable<IAnalysisProgressListener> getListeners() {
+    protected Iterable<IAnalysisProgressListener> getListeners() {
         return fListeners;
     }
 
@@ -86,7 +86,7 @@ public abstract class AbstractSegmentStoreAnalysisModule extends TmfAbstractAnal
      * Returns the file name for storing segment store
      * @return segment store fine name
      */
-    public abstract String getDataFileName();
+    protected abstract String getDataFileName();
 
     /**
      * Returns the analysis request for creating the segment store
@@ -94,7 +94,7 @@ public abstract class AbstractSegmentStoreAnalysisModule extends TmfAbstractAnal
      *                a segment store to fill
      * @return the segment store analysis request implementation
      */
-    public abstract AbstractSegmentStoreAnalysisRequest createAnalysisRequest(ISegmentStore<ISegment> segmentStore);
+    protected abstract AbstractSegmentStoreAnalysisRequest createAnalysisRequest(ISegmentStore<ISegment> segmentStore);
 
     /**
      * Read an object from the ObjectInputStream.
@@ -213,7 +213,7 @@ public abstract class AbstractSegmentStoreAnalysisModule extends TmfAbstractAnal
     /**
      * Abstract event request to fill a a segment store
      */
-    public static abstract class AbstractSegmentStoreAnalysisRequest extends TmfEventRequest {
+    protected static abstract class AbstractSegmentStoreAnalysisRequest extends TmfEventRequest {
 
         private final ISegmentStore<ISegment> fFullLatencyStore;
 
This page took 0.026479 seconds and 5 git commands to generate.