blob: 54b8a341b34604e77f90212b2080a5e4b9ab4a8c [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 CEA LIST and others.
*
* All rights reserved. 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:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.simex.dnd.strategy;
import org.eclipse.papyrus.uml.service.types.element.UMLElementTypes;
import org.eclipse.uml2.uml.UMLPackage;
/**
* Drop strategy to create a BroadcastSignalAction from a Signal drop and to update
* the "signal" reference.
*
* @author SR246418
*
*/
public class SignalToBroadcastActionStrategy extends AbstractDropInActivityStrategy {
public SignalToBroadcastActionStrategy() {
super(UMLPackage.eINSTANCE.getSignal(), UMLElementTypes.BROADCAST_SIGNAL_ACTION, UMLPackage.eINSTANCE.getBroadcastSignalAction_Signal());
setNamePrefix("broadcast");
}
}