blob: c0b1929767e0638255571c413b666f0f8106486a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 TypeFox and others.
* 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;
/**
* Used to request the model.
*
* @author sbegaudeau
*/
public class SiriusDiagramRequestModelAction extends AbstractSiriusDiagramAction {
/**
* The kind of the action.
*/
public static final String KIND = "requestModel"; //$NON-NLS-1$
/**
* The constructor.
*/
public SiriusDiagramRequestModelAction() {
super(KIND);
}
}