//notify that the structure of the given node has been changed
//
Runnable runnable = new Runnable() {
public void run() {
final RepoTreeModel repoModel = (RepoTreeModel) model;
repoModel.nodeStructureChanged(pNode);
}
};
SwingUtilities.invokeLater(runnable);
}
}