blob: d4b568fa8d50c519e3f5d20903549c63f22b496d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.launching.configuration;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchManager;
public class LaunchConfigurationUtils {
public static ILaunchConfiguration findLaunchConfiguration(String name,
String typeId) {
if (name != null) {
ILaunchConfiguration[] configs = getLaunches(typeId);
for (ILaunchConfiguration config : configs) {
if (name.equals(config.getName())) {
return config;
}
}
}
return null;
}
public static ILaunchConfiguration[] getLaunches(String typeId) {
ILaunchManager launchManager = DebugPlugin.getDefault()
.getLaunchManager();
ILaunchConfiguration[] launches = new ILaunchConfiguration[0];
try {
if (typeId.length() > 0) {
launches = launchManager.getLaunchConfigurations(launchManager
.getLaunchConfigurationType(typeId));
} else {
launches = launchManager.getLaunchConfigurations();
}
} catch (CoreException e) {
Activator.log(e);
}
return launches;
}
}