use of com.intellij.openapi.options.Configurable in project intellij by bazelbuild.
the class SdkUtil method openSdkManager.
/**
* Opens the SDK manager settings page
*/
public static void openSdkManager() {
Configurable configurable = ConfigurableExtensionPointUtil.createApplicationConfigurableForProvider(SdkUpdaterConfigurableProvider.class);
ShowSettingsUtil.getInstance().showSettingsDialog(null, configurable.getClass());
}
Aggregations