Package com.intellij.openapi.projectRoots

Examples of com.intellij.openapi.projectRoots.SdkTypeId


                        Sdk ghc = parameters.getGhc();
                        if (ghc == null) {
                            throw new CantRunException(NO_GHC);
                        }

                        SdkTypeId sdkTypeId = ghc.getSdkType();
                        if (!(sdkTypeId instanceof HaskellSdkType)) {
                            throw new CantRunException(NO_GHC);
                        }

                        String exePath = ghc.getHomePath() + "/bin/" + GHCUtil.getExeName("runghc"); // todo
View Full Code Here

TOP

Related Classes of com.intellij.openapi.projectRoots.SdkTypeId

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.