/* * 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 NodeMappingContentsItemSemanticEditPolicy extends GMFMapBaseItemSemanticEditPolicy { /** * @generated */ protected Command getCreateCommand(CreateElementRequest req) { if (GMFMapElementTypes.ChildReference_3004 == req.getElementType()) { if (req.getContainmentFeature() == null) { req.setContainmentFeature(GMFMapPackage.eINSTANCE.getNodeMapping_Children()); } return getMSLWrapper(new CreateChildReference_3004Command(req)); } if (GMFMapElementTypes.CompartmentMapping_3005 == req.getElementType()) { if (req.getContainmentFeature() == null) { req.setContainmentFeature(GMFMapPackage.eINSTANCE.getNodeMapping_Compartments()); } return getMSLWrapper(new CreateCompartmentMapping_3005Command(req)); } return super.getCreateCommand(req); } /** * @generated */ private static class CreateChildReference_3004Command extends CreateElementCommand { /** * @generated */ public CreateChildReference_3004Command(CreateElementRequest req) { super(req); } /** * @generated */ protected EClass getEClassToEdit() { return GMFMapPackage.eINSTANCE.getNodeMapping(); }; /** * @generated */ protected EObject getElementToEdit() { EObject container = ((CreateElementRequest) getRequest()).getContainer(); if (container instanceof View) { container = ((View) container).getElement(); } return container; } } /** * @generated */ private static class CreateCompartmentMapping_3005Command extends CreateElementCommand { /** * @generated */ public CreateCompartmentMapping_3005Command(CreateElementRequest req) { super(req); } /** * @generated */ protected EClass getEClassToEdit() { return GMFMapPackage.eINSTANCE.getNodeMapping(); }; /** * @generated */ protected EObject getElementToEdit() { EObject container = ((CreateElementRequest) getRequest()).getContainer(); if (container instanceof View) { container = ((View) container).getElement(); } return container; } } }