blob: 10485baf091475c03fbf1479cbff8d5b03d36286 [file] [log] [blame]
/*****************************************************************************
* 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.sysml.modelexplorer.handler;
import org.eclipse.gmf.runtime.emf.type.core.IElementType;
import org.eclipse.papyrus.sysml.service.types.element.SysMLElementTypes;
/**
* <pre>
* Command handler for ItemFlow creation
*
* </pre>
*
* @generated
*/
public class ItemFlowHandler extends AbstractSysmlModelExplorerCreateCommandHandler {
/**
* <pre>
* @see org.eclipse.papyrus.uml.service.types.ui.handlers.AbstractCreateCommandHandler#getElementTypeToCreate()
*
* @return the IElementType this handler is supposed to create
*
* </pre>
*
* @generated
*/
@Override
protected IElementType getElementTypeToCreate() {
return SysMLElementTypes.ITEM_FLOW;
}
}