Package coffeescript.nb.options.CoffeeScriptSettings

Examples of coffeescript.nb.options.CoffeeScriptSettings.CompilerType


    }

    public void applyChanges()
    {
        getSettings().setBare(bareCheckbox.isSelected());
        CompilerType compilerType = (CompilerType) compilerComboBox.getSelectedItem();
        getSettings().setCompilerType(compilerType);
        if (compilerType == CompilerType.NODEJS)
        {
            getSettings().setCompilerExec(executablePathTextField.getText());
        }
View Full Code Here


        getSettings().setUseUTF8Encoding(utfCheckbox.isSelected());
    }

    public boolean isSettingsValid()
    {
        CompilerType compilerType = (CompilerType) compilerComboBox.getSelectedItem();
        if (compilerType == CompilerType.NODEJS)
        {
            return CoffeeScriptNodeJSCompiler.get().isValid(executablePathTextField.getText());
        }
        return true;
View Full Code Here

TOP

Related Classes of coffeescript.nb.options.CoffeeScriptSettings.CompilerType

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.