blob: 7d62ee2422091bf569fdafd5d7177163baba172f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.services.diagram.api.actions;
import org.eclipse.sirius.services.diagram.api.AbstractSiriusDiagramAction;
/**
* The action used to request the tools.
*
* @author sbegaudeau
*/
public class SiriusDiagramRequestToolsAction extends AbstractSiriusDiagramAction {
/**
* The kind of the action.
*/
public static final String KIND = "requestTools"; //$NON-NLS-1$
/**
* The constructor.
*/
public SiriusDiagramRequestToolsAction() {
super(KIND);
}
}