resortChildren(childNode);
}
}
protected final void initRootNode() {
final Activatable activatable = new Activatable() {
public void showNotify() {
if (!myRootNodeWasInitialized) {
initRootNodeNow();
}
}
public void hideNotify() {
}
};
if (myUpdateIfInactive || ApplicationManager.getApplication().isUnitTestMode()) {
activatable.showNotify();
} else {
new UiNotifyConnector.Once(myTree, activatable);
}
}