Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 206cb393ec4aa573cbcf7d462bbd16250ddb9c3c (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
package org.eclipse.papyrus.eastadl.nattable.menu.handlers;

import org.eclipse.gmf.runtime.emf.type.core.IElementType;
import org.eclipse.papyrus.eastadl.service.types.elements.EastadlElementTypes;

public class FunctionAllocationHandler extends AbstractEastadlNattableCreateCommandHandler {

	/**
	 * <pre>
	 * @see org.eclipse.papyrus.uml.service.types.handlers.AbstractCreateCommandHandler#getElementTypeToCreate()
	 * 
	 * @return the IElementType this handler is supposed to create
	 *
	 * </pre>
	 *
	 * @generated
	 */
	@Override
	protected IElementType getElementTypeToCreate() {
		return EastadlElementTypes.FUNCTION_ALLOCATE;
	}


}

Back to the top