Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9e54def2f31b60fac0a43e56c8cf9f8e56355bd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * 
 */
package comrel.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 comrel.diagram.providers.ComrelElementTypes;

/**
 * @generated
 */
public class MultiSinglePortMappingItemSemanticEditPolicy extends
		ComrelBaseItemSemanticEditPolicy {

	/**
	 * @generated
	 */
	public MultiSinglePortMappingItemSemanticEditPolicy() {
		super(ComrelElementTypes.MultiSinglePortMapping_4003);
	}

	/**
	 * @generated
	 */
	protected Command getDestroyElementCommand(DestroyElementRequest req) {
		return getGEFWrapper(new DestroyElementCommand(req));
	}

}

Back to the top