Example usage for com.intellij.openapi.options ConfigurableEP subclass-usage

List of usage examples for com.intellij.openapi.options ConfigurableEP subclass-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.options ConfigurableEP subclass-usage.

Usage

From source file com.intellij.application.options.editor.EditorAppearanceConfigurableEP.java

/**
 * To provide additional options in Editor | Appearance section register implementation of
 * {@link com.intellij.openapi.options.UnnamedConfigurable} in the plugin.xml:
 * <p/>
 * &lt;extensions defaultExtensionNs="com.intellij"&gt;<br>
 * &nbsp;&nbsp;&lt;editorAppearanceConfigurable instance="class-name"/&gt;<br>

From source file com.intellij.application.options.editor.EditorSmartKeysConfigurableEP.java

/**
 * To provide additional options in Editor | Smart Keys section register implementation of
 * {@link com.intellij.openapi.options.UnnamedConfigurable} in the plugin.xml:
 * <p/>
 * &lt;extensions defaultExtensionNs="com.intellij"&gt;<br>
 * &nbsp;&nbsp;&lt;editorSmartKeysConfigurable instance="class-name"/&gt;<br>

From source file com.intellij.application.options.GeneralCodeStyleOptionsProviderEP.java

/**
 * @author Dennis.Ushakov
 */
public class GeneralCodeStyleOptionsProviderEP extends ConfigurableEP<GeneralCodeStyleOptionsProvider> {
    public static final ExtensionPointName<GeneralCodeStyleOptionsProviderEP> EP_NAME = ExtensionPointName
            .create("com.intellij.generalCodeStyleOptionsProvider");

From source file com.intellij.ide.GeneralSettingsConfigurableEP.java

/**
 * To provide additional options in General section register implementation of {@link com.intellij.openapi.options.SearchableConfigurable} in the plugin.xml:
 * <p/>
 * &lt;extensions defaultExtensionNs="com.intellij"&gt;<br>
 * &nbsp;&nbsp;&lt;generalOptionsProvider instance="class-name"/&gt;<br>
 * &lt;/extensions&gt;

From source file com.intellij.profile.codeInspection.ui.ErrorOptionsProviderEP.java

/**
 * Register implementation of {@link ErrorOptionsProvider} in the plugin.xml to provide additional options in Editor | "Error highlighting" section:
 * <p/>
 * &lt;extensions defaultExtensionNs="com.intellij"&gt;<br>
 * &nbsp;&nbsp;&lt;errorOptionsProvider instance="class-name"/&gt;<br>
 * &lt;/extensions&gt;