}
private int[] getPathFor(String path) {
DashHierarchy hier = harness.getDashboard().getHierarchy();
for (int a = 0; a < 3; a++) {
PropertyKey aKey = hier.getChildKey(PropertyKey.ROOT, a);
for (int b = 0; b < 3; b++) {
PropertyKey bKey = hier.getChildKey(aKey, b);
for (int c = 0; c < 3; c++) {
PropertyKey cKey = hier.getChildKey(bKey, c);
if (path.equals(cKey.path()))
return new int[] { a, b, c };
}
}
}
new Exception("no node found for path " + path).printStackTrace();