blob: 94429867db9b1f8de738033a21182a5aedcfbe97 [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 AddStructuralFeatureAction from a Property drop and to update
* the "structuralFeature" reference.
*
* @author SR246418
*
*/
public class PropertyToAddStructuralFeatureValueActionStrategy extends AbstractDropInActivityStrategy {
public PropertyToAddStructuralFeatureValueActionStrategy() {
super(UMLPackage.eINSTANCE.getProperty(), UMLElementTypes.ADD_STRUCTURAL_FEATURE_VALUE_ACTION, UMLPackage.eINSTANCE.getStructuralFeatureAction_StructuralFeature());
setNamePrefix("set");
}
}