Node aNode = (Node)path.getLastPathComponent();
//TODO do we need to treat this?
}
protected boolean checkSubprojectEndVoidNodes(Node parent,List inserted){
Node node;
int count=0;
boolean found=false;
for (Enumeration e=parent.children();e.hasMoreElements();){
node=(Node)e.nextElement();
if (checkSubprojectEndVoidNodes(node,inserted)) found=true;
if (NodeModelUtil.nodeIsSubproject(parent)) {
if (node.isVoid()) count++;
else count=0;
}
}
if (NodeModelUtil.nodeIsSubproject(parent)){
int nbEndVoids=nbMultiprojectEndVoidNodes;