blob: 1c8b6c8e3477c17eec7237284d3878fc25b80819 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.launching.launchConfigurations;
import java.util.Map;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IStreamsProxy;
import org.eclipse.debug.core.model.RuntimeProcess;
public class RemoteAntRuntimeProcess extends RuntimeProcess {
/**
* Constructs a RuntimeProcess on the given system process with the given name, adding this process to the given launch. Sets the streams proxy to
* an AntStreamsProxy if output is captured.
*/
public RemoteAntRuntimeProcess(ILaunch launch, Process process, String name, Map<String, String> attributes) {
super(launch, process, name, attributes);
}
@Override
protected IStreamsProxy createStreamsProxy() {
return new AntStreamsProxy();
}
}