Package com.cholick.idea.spock.config

Examples of com.cholick.idea.spock.config.SpockConfig


        return HighlightInfoFactory.getInstance().createHighlightInfo(SpockLabelHighlightInfoTypes.SPOCK_LABEL, element, null, buildTextAttributes());
    }

    private TextAttributes buildTextAttributes() {
        if (textAttributes == null) {
            SpockConfig spockConfig = SpockConfig.getInstance();
            int fontStyle = Font.PLAIN;
            if (spockConfig.labelBold) {
                fontStyle = fontStyle | Font.BOLD;
            }
            if (spockConfig.labelItalics) {
View Full Code Here

TOP

Related Classes of com.cholick.idea.spock.config.SpockConfig

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.