Example usage for com.intellij.openapi.options.colors ColorAndFontDescriptorsProvider EP_NAME

List of usage examples for com.intellij.openapi.options.colors ColorAndFontDescriptorsProvider EP_NAME

Introduction

In this page you can find the example usage for com.intellij.openapi.options.colors ColorAndFontDescriptorsProvider EP_NAME.

Prototype

ExtensionPointName EP_NAME

To view the source code for com.intellij.openapi.options.colors ColorAndFontDescriptorsProvider EP_NAME.

Click Source Link

Usage

From source file:com.intellij.application.options.colors.ColorAndFontOptions.java

License:Apache License

private static void initPluggedDescriptions(@NotNull List<EditorSchemeAttributeDescriptor> descriptions,
        @NotNull MyColorScheme scheme) {
    ColorSettingsPage[] pages = ColorSettingsPages.getInstance().getRegisteredPages();
    for (ColorSettingsPage page : pages) {
        initDescriptions(page, descriptions, scheme);
    }/*  w  ww  .  ja va2s .  co m*/
    for (ColorAndFontDescriptorsProvider provider : Extensions
            .getExtensions(ColorAndFontDescriptorsProvider.EP_NAME)) {
        initDescriptions(provider, descriptions, scheme);
    }
}