Java Code Examples for com.intellij.ide.actions.ShowSettingsUtilImpl#createDimensionKey()

The following examples show how to use com.intellij.ide.actions.ShowSettingsUtilImpl#createDimensionKey() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SassLintInspection.java    From sass-lint-plugin with MIT License 4 votes vote down vote up
public static void showSettings(Project project) {
    SassLintSettingsPage configurable = new SassLintSettingsPage(project);
    String dimensionKey = ShowSettingsUtilImpl.createDimensionKey(configurable);
    SingleConfigurableEditor singleConfigurableEditor = new SingleConfigurableEditor(project, configurable, dimensionKey, false);
    singleConfigurableEditor.show();
}
 
Example 2
Source File: RTInspection.java    From react-templates-plugin with MIT License 4 votes vote down vote up
public static void showSettings(Project project) {
    RTSettingsPage configurable = new RTSettingsPage(project);
    String dimensionKey = ShowSettingsUtilImpl.createDimensionKey(configurable);
    SingleConfigurableEditor singleConfigurableEditor = new SingleConfigurableEditor(project, configurable, dimensionKey, false);
    singleConfigurableEditor.show();
}
 
Example 3
Source File: RTInspection.java    From react-templates-plugin with MIT License 4 votes vote down vote up
public static void showSettings(Project project) {
    RTSettingsPage configurable = new RTSettingsPage(project);
    String dimensionKey = ShowSettingsUtilImpl.createDimensionKey(configurable);
    SingleConfigurableEditor singleConfigurableEditor = new SingleConfigurableEditor(project, configurable, dimensionKey, false);
    singleConfigurableEditor.show();
}
 
Example 4
Source File: ESLintInspection.java    From eslint-plugin with MIT License 4 votes vote down vote up
public static void showSettings(Project project) {
    ESLintSettingsPage configurable = new ESLintSettingsPage(project);
    String dimensionKey = ShowSettingsUtilImpl.createDimensionKey(configurable);
    SingleConfigurableEditor singleConfigurableEditor = new SingleConfigurableEditor(project, configurable, dimensionKey, false);
    singleConfigurableEditor.show();
}