/** * Copyright (c) 2007, 2013 THALES GLOBAL SERVICES. * 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.diagram.description.tool; import org.eclipse.sirius.viewpoint.description.tool.AbstractToolDescription; /** * A representation of the model object ' Request Description'. * *

* The following features are supported: *

* * * @see org.eclipse.sirius.diagram.description.tool.ToolPackage#getRequestDescription() * @model * @generated */ public interface RequestDescription extends AbstractToolDescription { /** * Returns the value of the 'Type' attribute. An Identifier for your request. This request will be send through GEF and any EditPolicy * handling this request will then be able to perform commands. * * @return the value of the 'Type' attribute. * @see #setType(String) * @see org.eclipse.sirius.diagram.description.tool.ToolPackage#getRequestDescription_Type() * @model required="true" * @generated */ String getType(); /** * Sets the value of the '{@link org.eclipse.sirius.diagram.description.tool.RequestDescription#getType * Type}' attribute. * * @param value * the new value of the 'Type' attribute. * @see #getType() * @generated */ void setType(String value); } // RequestDescription