Package com.intellij.openapi.editor.colors.impl

Examples of com.intellij.openapi.editor.colors.impl.DelegateColorScheme


        }
    }

    public void initComponents() {
        final EditorColorsScheme colorsScheme = myConsoleEditor.getColorsScheme();
        final DelegateColorScheme scheme = new DelegateColorScheme(colorsScheme) {
            @NotNull
            @Override
            public Color getDefaultBackground() {
                final Color color = getColor(ConsoleViewContentType.CONSOLE_BACKGROUND_KEY);
                return color == null ? super.getDefaultBackground() : color;
View Full Code Here

TOP

Related Classes of com.intellij.openapi.editor.colors.impl.DelegateColorScheme

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.