blob: 21b852f6b1d1d09ab91b4b7a620d3f97ceb2358a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 Code 9 and others.
*
* This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License 2.0 which accompanies this distribution, and is
* available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Code 9 - initial API and implementation
* IBM - ongoing development
******************************************************************************/
package org.eclipse.equinox.p2.publisher.eclipse;
import org.eclipse.equinox.internal.provisional.frameworkadmin.LauncherData;
import org.eclipse.equinox.p2.publisher.AbstractAdvice;
public class LaunchingAdvice extends AbstractAdvice implements IExecutableAdvice {
private final LauncherData data;
private final String configSpec;
public LaunchingAdvice(LauncherData data, String configSpec) {
this.data = data;
this.configSpec = configSpec;
}
@Override
protected String getConfigSpec() {
return configSpec;
}
@Override
public String[] getProgramArguments() {
return data.getProgramArgs();
}
@Override
public String[] getVMArguments() {
return data.getJvmArgs();
}
@Override
public String getExecutableName() {
return data.getLauncherName();
}
}