use of com.microsoft.azure.hdinsight.serverexplore.hdinsightnode.ClusterNode in project azure-tools-for-java by Microsoft.
the class HDInsightRootModuleImpl method refreshWithoutAsync.
@Override
public void refreshWithoutAsync() {
synchronized (this) {
removeAllChildNodes();
clusterDetailList = ClusterManagerEx.getInstance().getClusterDetailsWithoutAsync(getProject());
if (clusterDetailList != null) {
for (IClusterDetail clusterDetail : clusterDetailList) {
addChildNode(new ClusterNode(this, clusterDetail));
}
}
}
}
Aggregations