com.intellij.psi.codeStyle.CodeStyleConfigurable Java Examples

The following examples show how to use com.intellij.psi.codeStyle.CodeStyleConfigurable. 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: FusionCodeStyleSettingsProvider.java    From intellij-neos with GNU General Public License v3.0 6 votes vote down vote up
@NotNull
@Override
public CodeStyleConfigurable createConfigurable(@NotNull CodeStyleSettings settings, @NotNull CodeStyleSettings modelSettings) {
    return new CodeStyleAbstractConfigurable(settings, modelSettings, "Neos Fusion") {
        @Override
        protected CodeStyleAbstractPanel createPanel(CodeStyleSettings codeStyleSettings) {
            return new FusionCodeStyleMainPanel(getCurrentSettings(), codeStyleSettings);
        }

        @Nullable
        @Override
        public String getHelpTopic() {
            return null;
        }
    };
}