/* * Copyright (c) 2006, 2007 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: * Richard Gronback (Borland) - initial API and implementation */ package org.eclipse.gmf.examples.mindmap.diagram.edit.policies; import org.eclipse.gef.commands.Command; import org.eclipse.gmf.examples.mindmap.MindmapPackage; import org.eclipse.gmf.examples.mindmap.diagram.edit.commands.ThreadItemCreateCommand; import org.eclipse.gmf.examples.mindmap.diagram.providers.MindmapElementTypes; import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest; /** * @generated */ public class ThreadThreadItemCompartmentItemSemanticEditPolicy extends MindmapBaseItemSemanticEditPolicy { /** * @generated */ protected Command getCreateCommand(CreateElementRequest req) { if (MindmapElementTypes.ThreadItem_3002 == req.getElementType()) { if (req.getContainmentFeature() == null) { req.setContainmentFeature(MindmapPackage.eINSTANCE .getThread_Items()); } return getGEFWrapper(new ThreadItemCreateCommand(req)); } return super.getCreateCommand(req); } }