blob: c464dc25df7a7db934b87c9119fae2336b6068f1 [file] [log] [blame]
package org.eclipse.gmf.tooling.examples.linklf.diagram.edit.policies;
import org.eclipse.gef.commands.Command;
import org.eclipse.gmf.runtime.emf.type.core.commands.DestroyElementCommand;
import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest;
import org.eclipse.gmf.tooling.examples.linklf.diagram.providers.LinklfElementTypes;
/**
* @generated
*/
public class LinkItemSemanticEditPolicy extends LinklfBaseItemSemanticEditPolicy {
/**
* @generated
*/
public LinkItemSemanticEditPolicy() {
super(LinklfElementTypes.Link_4001);
}
/**
* @generated
*/
protected Command getDestroyElementCommand(DestroyElementRequest req) {
return getGEFWrapper(new DestroyElementCommand(req));
}
}