Package com.boxysystems.scriptmonkey.intellij

Examples of com.boxysystems.scriptmonkey.intellij.ScriptMonkeyApplicationComponent


    return new ScriptEngineManager();
  }

  private void runGlobalScripts() {
    try {
      ScriptMonkeyApplicationComponent applicationComponent = ApplicationManager.getApplication().getComponent(ScriptMonkeyApplicationComponent.class);
      File jsFolder = new File(applicationComponent.getSettings().getHomeFolder(), Constants.JS_FOLDER_NAME);
      File globalScripts = new File(jsFolder, "global");

      if (globalScripts.exists()) {
        File[] jsFiles = globalScripts.listFiles(new JSFileFilter());
        for (File jsFile : jsFiles) {
View Full Code Here

TOP

Related Classes of com.boxysystems.scriptmonkey.intellij.ScriptMonkeyApplicationComponent

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.