blob: 8c894c92fb0449e4256c6d91591c8daca083cf39 [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.SelectOneOperation;
/**
*
* @author Sina Madani
* @since 1.6
*/
public class ParallelSelectOneOperation extends SelectOneOperation {
public ParallelSelectOneOperation() {
setDelegateOperation(new ParallelSelectOperation());
}
}