internal void ExpandSpecificNode(List <string> IDs) { GetNodeByID getter = new GetNodeByID(IDs); ExpandSpecificNode(getter); }
void ExpandSpecificNode(GetNodeByID getter) { TreatSpecificNodes treater = new TreatSpecificNodes(getter, null, true, true); _mainForm.treeList.NodesIterator.DoOperation(treater); }
//in the first version the node is specified by the "defaultID", which is the ID deliverd by ...TreeListTag.GetDefaultID (i.e. the system is arbitrary) //in the second version the specification is done by the IDs of all policies/functions/parameters belonging to the node (i.e. of all systems) internal void ExpandSpecificNode(string defaultID) { GetNodeByID getter = new GetNodeByID(defaultID); ExpandSpecificNode(getter); }