/* * Copyright (c) 2006, 2008 Borland Software Corp. * * 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: * Alexander Shatalin (Borland) - initial API and implementation */ package org.eclipse.gmf.ecore.edit.policies; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.ecore.edit.commands.EAnnotationReferencesCreateCommand; import org.eclipse.gmf.ecore.edit.commands.EAnnotationReferencesReorientCommand; import org.eclipse.gmf.ecore.edit.parts.EAnnotationReferencesEditPart; import org.eclipse.gmf.ecore.providers.EcoreElementTypes; import org.eclipse.gmf.runtime.emf.type.core.commands.DestroyElementCommand; import org.eclipse.gmf.runtime.emf.type.core.requests.CreateRelationshipRequest; import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientReferenceRelationshipRequest; /** * @generated */ public class EReferenceItemSemanticEditPolicy extends EcoreBaseItemSemanticEditPolicy { /** * @generated */ public EReferenceItemSemanticEditPolicy() { super(EcoreElementTypes.EReference_4002); } /** * @generated */ protected Command getDestroyElementCommand(DestroyElementRequest req) { return getGEFWrapper(new DestroyElementCommand(req)); } /** * @generated */ protected Command getCreateRelationshipCommand(CreateRelationshipRequest req) { Command command = req.getTarget() == null ? getStartCreateRelationshipCommand(req) : getCompleteCreateRelationshipCommand(req); return command != null ? command : super.getCreateRelationshipCommand(req); } /** * @generated */ protected Command getStartCreateRelationshipCommand(CreateRelationshipRequest req) { if (EcoreElementTypes.EAnnotationReferences_4001 == req.getElementType()) { return null; } return null; } /** * @generated */ protected Command getCompleteCreateRelationshipCommand(CreateRelationshipRequest req) { if (EcoreElementTypes.EAnnotationReferences_4001 == req.getElementType()) { return getGEFWrapper(new EAnnotationReferencesCreateCommand(req, req.getSource(), req.getTarget())); } return null; } /** * Returns command to reorient EReference based link. New link target or source * should be the domain model element associated with this node. * * @generated */ protected Command getReorientReferenceRelationshipCommand(ReorientReferenceRelationshipRequest req) { switch (getVisualID(req)) { case EAnnotationReferencesEditPart.VISUAL_ID: return getGEFWrapper(new EAnnotationReferencesReorientCommand(req)); } return super.getReorientReferenceRelationshipCommand(req); } }