blob: 1063a22c10d5d84b5d755a8e8e3416727734e88b [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);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.RuntimeProcess#createStreamsProxy()
*/
@Override
protected IStreamsProxy createStreamsProxy() {
return new AntStreamsProxy();
}
}