// invalidate the complete tree
entry = nodeState.getNodeEntry();
while (entry.getParent() != null) {
entry = entry.getParent();
}
entry.invalidate(true);
} else {
// import only added new items below the import target. therefore
// recursive invalidation is not required. // TODO correct?
nodeState.getNodeEntry().invalidate(false);
}