blob: 0d7a4a12e2b1f8ea96174b724360950ce915ccb9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/*
*
*/
package org.eclipse.opencert.apm.baseline.baseline.diagram.edit.policies;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gef.commands.Command;
import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart;
import org.eclipse.gmf.runtime.emf.commands.core.commands.DuplicateEObjectsCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.DuplicateElementsRequest;
import org.eclipse.opencert.apm.baseline.baseline.diagram.edit.commands.BaseActivityCreateCommand;
import org.eclipse.opencert.apm.baseline.baseline.diagram.edit.commands.BaseArtefactCreateCommand;
import org.eclipse.opencert.apm.baseline.baseline.diagram.edit.commands.BaseRoleCreateCommand;
import org.eclipse.opencert.apm.baseline.baseline.diagram.providers.BaselineElementTypes;
/**
* @generated
*/
public class BaseFrameworkItemSemanticEditPolicy extends
BaselineBaseItemSemanticEditPolicy {
/**
* @generated
*/
public BaseFrameworkItemSemanticEditPolicy() {
super(BaselineElementTypes.BaseFramework_1000);
}
/**
* @generated
*/
protected Command getCreateCommand(CreateElementRequest req) {
if (BaselineElementTypes.BaseActivity_2001 == req.getElementType()) {
return getGEFWrapper(new BaseActivityCreateCommand(req));
}
if (BaselineElementTypes.BaseArtefact_2002 == req.getElementType()) {
return getGEFWrapper(new BaseArtefactCreateCommand(req));
}
if (BaselineElementTypes.BaseRole_2003 == req.getElementType()) {
return getGEFWrapper(new BaseRoleCreateCommand(req));
}
return super.getCreateCommand(req);
}
/**
* @generated
*/
protected Command getDuplicateCommand(DuplicateElementsRequest req) {
TransactionalEditingDomain editingDomain = ((IGraphicalEditPart) getHost())
.getEditingDomain();
return getGEFWrapper(new DuplicateAnythingCommand(editingDomain, req));
}
/**
* @generated
*/
private static class DuplicateAnythingCommand extends
DuplicateEObjectsCommand {
/**
* @generated
*/
public DuplicateAnythingCommand(
TransactionalEditingDomain editingDomain,
DuplicateElementsRequest req) {
super(editingDomain, req.getLabel(), req
.getElementsToBeDuplicated(), req
.getAllDuplicatedElementsMap());
}
}
}