/* * Copyright (c) 2006 Borland Software Corporation * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Dmitry Stadnik (Borland) - initial API and implementation */ package org.eclipse.gmf.map.editor.edit.policies; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.map.editor.providers.GMFMapElementTypes; import org.eclipse.gmf.mappings.GMFMapPackage; import org.eclipse.gmf.runtime.emf.type.core.commands.CreateElementCommand; import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest; import org.eclipse.gmf.runtime.notation.View; /** * @generated */ public class LinkMappingLabelsItemSemanticEditPolicy extends GMFMapBaseItemSemanticEditPolicy { /** * @generated */ protected Command getCreateCommand(CreateElementRequest req) { if (GMFMapElementTypes.FeatureLabelMapping_3008 == req.getElementType()) { if (req.getContainmentFeature() == null) { req.setContainmentFeature(GMFMapPackage.eINSTANCE.getMappingEntry_LabelMappings()); } return getMSLWrapper(new CreateFeatureLabelMapping_3008Command(req)); } if (GMFMapElementTypes.DesignLabelMapping_3009 == req.getElementType()) { if (req.getContainmentFeature() == null) { req.setContainmentFeature(GMFMapPackage.eINSTANCE.getMappingEntry_LabelMappings()); } return getMSLWrapper(new CreateDesignLabelMapping_3009Command(req)); } if (GMFMapElementTypes.LabelMapping_3003 == req.getElementType()) { if (req.getContainmentFeature() == null) { req.setContainmentFeature(GMFMapPackage.eINSTANCE.getMappingEntry_LabelMappings()); } return getMSLWrapper(new CreateLabelMapping_3003Command(req)); } return super.getCreateCommand(req); } /** * @generated */ private static class CreateFeatureLabelMapping_3008Command extends CreateElementCommand { /** * @generated */ public CreateFeatureLabelMapping_3008Command(CreateElementRequest req) { super(req); } /** * @generated */ protected EClass getEClassToEdit() { return GMFMapPackage.eINSTANCE.getLinkMapping(); }; /** * @generated */ protected EObject getElementToEdit() { EObject container = ((CreateElementRequest) getRequest()).getContainer(); if (container instanceof View) { container = ((View) container).getElement(); } return container; } } /** * @generated */ private static class CreateDesignLabelMapping_3009Command extends CreateElementCommand { /** * @generated */ public CreateDesignLabelMapping_3009Command(CreateElementRequest req) { super(req); } /** * @generated */ protected EClass getEClassToEdit() { return GMFMapPackage.eINSTANCE.getLinkMapping(); }; /** * @generated */ protected EObject getElementToEdit() { EObject container = ((CreateElementRequest) getRequest()).getContainer(); if (container instanceof View) { container = ((View) container).getElement(); } return container; } } /** * @generated */ private static class CreateLabelMapping_3003Command extends CreateElementCommand { /** * @generated */ public CreateLabelMapping_3003Command(CreateElementRequest req) { super(req); } /** * @generated */ protected EClass getEClassToEdit() { return GMFMapPackage.eINSTANCE.getLinkMapping(); }; /** * @generated */ protected EObject getElementToEdit() { EObject container = ((CreateElementRequest) getRequest()).getContainer(); if (container instanceof View) { container = ((View) container).getElement(); } return container; } } }