Java Code Examples for com.intellij.openapi.projectRoots.JdkUtil#checkForJre()
The following examples show how to use
com.intellij.openapi.projectRoots.JdkUtil#checkForJre() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XQueryRunProfileState.java From intellij-xquery with Apache License 2.0 | 5 votes |
private Sdk createAlternativeJdk(@NotNull String jreHome) throws CantRunException { final Sdk configuredJdk = ProjectJdkTable.getInstance().findJdk(jreHome); if (configuredJdk != null) { return configuredJdk; } if (!JdkUtil.checkForJre(jreHome) && !JdkUtil.checkForJdk(jreHome)) { throw new CantRunException(ExecutionBundle.message("jre.path.is.not.valid.jre.home.error.message", jreHome)); } final String versionString = SdkVersionUtil.detectJdkVersion(jreHome); final Sdk jdk = new SimpleJavaSdkType().createJdk(versionString != null ? versionString : "", jreHome); if (jdk == null) throw CantRunException.noJdkConfigured(); return jdk; }
Example 2
Source File: AlternativeJreValidator.java From intellij-xquery with Apache License 2.0 | 4 votes |
public static void checkAlternativeJRE(@Nullable String jrePath) throws RuntimeConfigurationWarning { if (StringUtil.isEmpty(jrePath) || ProjectJdkTable.getInstance().findJdk(jrePath) == null && !JdkUtil.checkForJre(jrePath)) { throw new RuntimeConfigurationWarning(ExecutionBundle.message("jre.path.is.not.valid.jre.home.error.message", jrePath)); } }