blob: 74fae8fdc9a86ff7799ebfbd9f86780b6733b4b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 Borland Software Corporation and others.
* 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.gmf.examples.mindmap.diagram.edit.policies;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gef.commands.Command;
import org.eclipse.gmf.examples.mindmap.MindmapPackage;
import org.eclipse.gmf.examples.mindmap.diagram.providers.MindmapElementTypes;
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 Thread_ThreadItemCompartmentItemSemanticEditPolicy extends MindmapBaseItemSemanticEditPolicy {
/**
* @generated
*/
protected Command getCreateCommand(CreateElementRequest req) {
if (MindmapElementTypes.ThreadItem_2002 == req.getElementType()) {
if (req.getContainmentFeature() == null) {
req.setContainmentFeature(MindmapPackage.eINSTANCE.getThread_Items());
}
return getMSLWrapper(new CreateThreadItem_2002Command(req));
}
return super.getCreateCommand(req);
}
/**
* @generated
*/
private static class CreateThreadItem_2002Command extends CreateElementCommand {
/**
* @generated
*/
public CreateThreadItem_2002Command(CreateElementRequest req) {
super(req);
}
/**
* @generated
*/
protected EClass getEClassToEdit() {
return MindmapPackage.eINSTANCE.getThread();
};
/**
* @generated
*/
protected EObject getElementToEdit() {
EObject container = ((CreateElementRequest) getRequest()).getContainer();
if (container instanceof View) {
container = ((View) container).getElement();
}
return container;
}
}
}