/***************************************************************************** * Copyright (c) 2013 CEA LIST. * * 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: * Juan Cadavid (CEA LIST) juan.cadavid@cea.fr - Initial API and implementation *****************************************************************************/ package org.eclipse.papyrus.uml.nattable.menu.handlers; import org.eclipse.core.commands.IHandler; import org.eclipse.gmf.runtime.emf.type.core.IElementType; import org.eclipse.papyrus.uml.service.types.element.UMLElementTypes; /** *
 * Command handler for StructuralFeatureAction creation
 *
 * 
* * @generated */ public class StructuralFeatureActionHandler extends AbstractUmlNattableCreateCommandHandler implements IHandler { /** *
	 * @see org.eclipse.papyrus.uml.service.creation.handler.CreateHandler#getElementTypeToCreate()
	 *
	 * @return the IElementType this handler is supposed to create
	 *
	 * 
* * @generated */ @Override protected IElementType getElementTypeToCreate() { return UMLElementTypes.STRUCTURAL_FEATURE_ACTION; } }