Home
last modified time | relevance | path

Searched refs:jreContainerPath (Results 1 – 5 of 5) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/product/
H A DJREInfo.java64 public void setJREContainerPath(String os, IPath jreContainerPath) { in setJREContainerPath() argument
67 fJVMWin = jreContainerPath; in setJREContainerPath()
73 fJVMLin = jreContainerPath; in setJREContainerPath()
79 fJVMMac = jreContainerPath; in setJREContainerPath()
88 IPath jreContainerPath = getJREContainerPath(os); in getJVMLocation() local
89 if (jreContainerPath == null) { in getJVMLocation()
92 IVMInstall vm = JavaRuntime.getVMInstall(jreContainerPath); in getJVMLocation()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/
H A DClasspathVMUtil.java129 IPath jreContainerPath= new Path(JavaRuntime.JRE_CONTAINER); in updateClasspath() local
132 …) == IClasspathEntry.CPE_CONTAINER && curr.getPath().matchingFirstSegments(jreContainerPath) > 0) { in updateClasspath()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/wizards/product/
H A DProductFromConfigOperation.java67 IPath jreContainerPath = new Path(jreString); in initializeProduct() local
72 jreInfo.setJREContainerPath(TargetPlatform.getOS(), jreContainerPath); in initializeProduct() local
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/iproduct/
H A DIJREInfo.java48 public void setJREContainerPath(String os, IPath jreContainerPath); in setJREContainerPath() argument
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.launching/launching/org/eclipse/jdt/launching/
H A DJavaRuntime.java2426 public static IVMInstall getVMInstall(IPath jreContainerPath) { in getVMInstall() argument
2427 return JREContainerInitializer.resolveVM(jreContainerPath); in getVMInstall()
2438 public static String getVMInstallTypeId(IPath jreContainerPath) { in getVMInstallTypeId() argument
2439 if (JREContainerInitializer.isExecutionEnvironment(jreContainerPath)) { in getVMInstallTypeId()
2442 return JREContainerInitializer.getVMTypeId(jreContainerPath); in getVMInstallTypeId()
2453 public static String getVMInstallName(IPath jreContainerPath) { in getVMInstallName() argument
2454 if (JREContainerInitializer.isExecutionEnvironment(jreContainerPath)) { in getVMInstallName()
2457 return JREContainerInitializer.getVMName(jreContainerPath); in getVMInstallName()
2468 public static String getExecutionEnvironmentId(IPath jreContainerPath) { in getExecutionEnvironmentId() argument
2469 return JREContainerInitializer.getExecutionEnvironmentId(jreContainerPath); in getExecutionEnvironmentId()