use of com.microsoft.azure.hdinsight.serverexplore.ui.AddNewHDInsightReaderClusterForm in project azure-tools-for-java by Microsoft.
the class HDInsightHelperImpl method createAddNewHDInsightReaderClusterAction.
@NotNull
@Override
public NodeActionListener createAddNewHDInsightReaderClusterAction(@NotNull final HDInsightRootModule module, @NotNull final ClusterDetail clusterDetail) {
return new NodeActionListener() {
@Override
protected void actionPerformed(final NodeActionEvent nodeActionEvent) {
final AddNewHDInsightReaderClusterForm linkClusterForm = new AddNewHDInsightReaderClusterForm((Project) module.getProject(), module, clusterDetail);
linkClusterForm.show();
}
};
}
Aggregations