blob: ede988f75fc750cf8d70c5b6abeba321a1b433d2 [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:
* Cedric Dumoulin - cedric.dumoulin@lifl.fr
******************************************************************************/
package org.eclipse.papyrus.layers.ui.commands;
import org.eclipse.core.commands.IHandler;
import org.eclipse.papyrus.layers.stackmodel.layers.LayerExpression;
import org.eclipse.papyrus.layers.stackmodel.layers.LayersFactory;
import org.eclipse.papyrus.layers.stackmodel.layers.StackedLayerOperator;
import org.eclipse.papyrus.layers.stackmodel.layers.TopLayerOperator;
/**
* Create a {@link TopLayerOperator}.
*
* @author cedric dumoulin
*
*/
public class CreateStackedLayerOperatorHandler extends AbstractCreateLayerExpressionHandler implements IHandler {
@Override
protected LayerExpression createLayer() {
StackedLayerOperator operator = LayersFactory.eINSTANCE.createStackedLayerOperator();
return operator;
}
@Override
public String getCommandName() {
return "Create Stacked Layer Operator";
}
}