Community
Participate
Working Groups
*
* Contributors:
* IBM Corporation - initial API and implementation
* Christian Walther (Indel AG), Andrew Niefer - [307269][325368] respect "Bundle JRE" checkbox
*******************************************************************************/
package org.eclipse.pde.internal.core.exports;
IJREInfo jreInfo = fProduct.getJREInfo();
for (int i = 0; i < configurations.length; i++) {
String[] config = configurations[i];
if (!jreInfo.includeJREWithProduct(config[0])) {
continue;
}
File vm = jreInfo != null ? jreInfo.getJVMLocation(config[0]) : null;
if (vm != null) {
-