blob: 399baf0448d519925cd8d4020cf23e42ec5e2fab [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 Topic_ThreadCompartmentItemSemanticEditPolicy extends MindmapBaseItemSemanticEditPolicy {
/**
* @generated
*/
protected Command getCreateCommand(CreateElementRequest req) {
if (MindmapElementTypes.Thread_2001 == req.getElementType()) {
if (req.getContainmentFeature() == null) {
req.setContainmentFeature(MindmapPackage.eINSTANCE.getTopic_Comments());
}
return getMSLWrapper(new CreateThread_2001Command(req));
}
return super.getCreateCommand(req);
}
/**
* @generated
*/
private static class CreateThread_2001Command extends CreateElementCommand {
/**
* @generated
*/
public CreateThread_2001Command(CreateElementRequest req) {
super(req);
}
/**
* @generated
*/
protected EClass getEClassToEdit() {
return MindmapPackage.eINSTANCE.getTopic();
};
/**
* @generated
*/
protected EObject getElementToEdit() {
EObject container = ((CreateElementRequest) getRequest()).getContainer();
if (container instanceof View) {
container = ((View) container).getElement();
}
return container;
}
}
}