blob: 85af4d0db286f77d4b8864af5b44f30be16b9526 [file] [log] [blame]
/**
* Copyright (c) 2018 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Obeo - initial API and implementation
*
*/
package org.eclipse.sirius.workflow;
import org.eclipse.sirius.viewpoint.description.DocumentedElement;
import org.eclipse.sirius.viewpoint.description.IdentifiedElement;
import org.eclipse.sirius.viewpoint.description.tool.InitialOperation;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Activity Description</b></em>'. <!--
* end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.sirius.workflow.ActivityDescription#getLabelExpression <em>Label Expression</em>}</li>
* <li>{@link org.eclipse.sirius.workflow.ActivityDescription#getImagePath <em>Image Path</em>}</li>
* <li>{@link org.eclipse.sirius.workflow.ActivityDescription#getOperation <em>Operation</em>}</li>
* </ul>
*
* @see org.eclipse.sirius.workflow.WorkflowPackage#getActivityDescription()
* @model
* @generated
*/
public interface ActivityDescription extends IdentifiedElement, DocumentedElement {
/**
* Returns the value of the '<em><b>Label Expression</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Label Expression</em>' attribute isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Label Expression</em>' attribute.
* @see #setLabelExpression(String)
* @see org.eclipse.sirius.workflow.WorkflowPackage#getActivityDescription_LabelExpression()
* @model dataType="org.eclipse.sirius.viewpoint.description.InterpretedExpression" required="true"
* @generated
*/
String getLabelExpression();
/**
* Sets the value of the '{@link org.eclipse.sirius.workflow.ActivityDescription#getLabelExpression <em>Label
* Expression</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Label Expression</em>' attribute.
* @see #getLabelExpression()
* @generated
*/
void setLabelExpression(String value);
/**
* Returns the value of the '<em><b>Image Path</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Image Path</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Image Path</em>' attribute.
* @see #setImagePath(String)
* @see org.eclipse.sirius.workflow.WorkflowPackage#getActivityDescription_ImagePath()
* @model dataType="org.eclipse.sirius.viewpoint.description.ImagePath"
* @generated
*/
String getImagePath();
/**
* Sets the value of the '{@link org.eclipse.sirius.workflow.ActivityDescription#getImagePath <em>Image Path</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Image Path</em>' attribute.
* @see #getImagePath()
* @generated
*/
void setImagePath(String value);
/**
* Returns the value of the '<em><b>Operation</b></em>' containment reference. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operation</em>' containment reference isn't clear, there really should be more of a
* description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Operation</em>' containment reference.
* @see #setOperation(InitialOperation)
* @see org.eclipse.sirius.workflow.WorkflowPackage#getActivityDescription_Operation()
* @model containment="true" resolveProxies="true" required="true"
* @generated
*/
InitialOperation getOperation();
/**
* Sets the value of the '{@link org.eclipse.sirius.workflow.ActivityDescription#getOperation <em>Operation</em>}'
* containment reference. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Operation</em>' containment reference.
* @see #getOperation()
* @generated
*/
void setOperation(InitialOperation value);
} // ActivityDescription