tmf: Expose a method to retrieve an attribute's name
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / statesystem / AttributeTree.java
index 2bcbd7d65d5c997fa1183535cda4d28f7d3764d9..cf36172940fb5271072c9b7f9206a30037316c87 100644 (file)
@@ -336,6 +336,10 @@ final class AttributeTree {
         }
     }
 
+    String getAttributeName(int quark) {
+        return attributeList.get(quark).getName();
+    }
+
     String getFullAttributeName(int quark) {
         if (quark >= attributeList.size() || quark < 0) {
             return null;
This page took 0.024649 seconds and 5 git commands to generate.