TCTreeNode childNode = (TCTreeNode) node.getChildAt(i);
JTreeNode childFileNode = (JTreeNode) childNode.getUserObject();
// set the value to child from its parent
TristateCheckBox.State rootState = model.getNodeState(node.toString(), testbedName);
model.setNodeState(childFileNode, testbedName, rootState);
model.updateChild(childFileNode, testbedName);
}
}
}
}