blob: f84db2245cdd0c5a2b561d4b9e079d1c1acaaae0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2019 Mia-Software and others.
* All rights reserved. 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Payneau (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - Bug 337402 - [Discovery Workflow] refactoring
*******************************************************************************/
package org.eclipse.modisco.workflow.modiscoworkflow;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Work</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.workflow.modiscoworkflow.Work#getParameters
* <em>Parameters</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.workflow.modiscoworkflow.ModiscoworkflowPackage#getWork()
* @model
* @generated
*/
public interface Work extends Element {
/**
* Returns the value of the '<em><b>Parameters</b></em>' containment
* reference list. The list contents are of type
* {@link org.eclipse.modisco.workflow.modiscoworkflow.WorkParameter}. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameters</em>' containment reference list
* isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Parameters</em>' containment reference
* list.
* @see org.eclipse.modisco.workflow.modiscoworkflow.ModiscoworkflowPackage#getWork_Parameters()
* @model containment="true"
* @generated
*/
EList<WorkParameter> getParameters();
} // Work