blob: 63e207aec0ce7b95decd8c77439268292cca94ff [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2018 The University of York.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.eol.execute.operations.declarative.concurrent;
import org.eclipse.epsilon.eol.execute.operations.declarative.ForAllOperation;
/**
*
* @author Sina Madani
* @since 1.6
*/
public class ParallelForAllOperation extends ForAllOperation {
public ParallelForAllOperation() {
setDelegateOperation(new ParallelSelectOperation());
}
}