tmf: Refactor TMF statistics
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / statistics / model / TmfStatisticsTreeNode.java
index 10616c32298a4d5c92e1e90a96bc58f64bf91c49..bbc57c52da1865ae03add9e9ec8f84a29fe19137 100755 (executable)
@@ -42,7 +42,7 @@ public class TmfStatisticsTreeNode {
     /**
      * Corresponding StatisticsData.
      */
-    protected AbsTmfStatisticsTree fNodes;
+    protected TmfStatisticsTree fNodes;
 
     /**
      * Constructor.
@@ -52,7 +52,7 @@ public class TmfStatisticsTreeNode {
      * @param nodes
      *            Corresponding StatisticsData.
      */
-    public TmfStatisticsTreeNode(AbsTmfStatisticsTree nodes, final String... path) {
+    public TmfStatisticsTreeNode(TmfStatisticsTree nodes, final String... path) {
         fPath = path;
         fNodes = nodes;
         fValues = new TmfStatisticsValues();
@@ -67,7 +67,7 @@ public class TmfStatisticsTreeNode {
      *         exists with given key name
      */
     public boolean containsChild(String key) {
-        if (AbsTmfStatisticsTree.ROOT.equals(fPath)) {
+        if (TmfStatisticsTree.ROOT.equals(fPath)) {
             return fNodes.get(key) != null;
         }
 
This page took 0.024414 seconds and 5 git commands to generate.