blob: faf9eb1ebbb7e49ea7ae5bd152ab1853b95a8cd4 [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;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Export Infos</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.modisco.workflow.modiscoworkflow.ExportInfos#getPackageBase
* <em>Package Base</em>}</li>
* <li>
* {@link org.eclipse.modisco.workflow.modiscoworkflow.ExportInfos#getSymbolicName
* <em>Symbolic Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.workflow.modiscoworkflow.ModiscoworkflowPackage#getExportInfos()
* @model
* @generated
*/
public interface ExportInfos extends EObject {
/**
* Returns the value of the '<em><b>Package Base</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Package Base</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Package Base</em>' attribute.
* @see #setPackageBase(String)
* @see org.eclipse.modisco.workflow.modiscoworkflow.ModiscoworkflowPackage#getExportInfos_PackageBase()
* @model
* @generated
*/
String getPackageBase();
/**
* Sets the value of the '
* {@link org.eclipse.modisco.workflow.modiscoworkflow.ExportInfos#getPackageBase
* <em>Package Base</em>}' attribute. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Package Base</em>' attribute.
* @see #getPackageBase()
* @generated
*/
void setPackageBase(String value);
/**
* Returns the value of the '<em><b>Symbolic Name</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Symbolic Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Symbolic Name</em>' attribute.
* @see #setSymbolicName(String)
* @see org.eclipse.modisco.workflow.modiscoworkflow.ModiscoworkflowPackage#getExportInfos_SymbolicName()
* @model
* @generated
*/
String getSymbolicName();
/**
* Sets the value of the '
* {@link org.eclipse.modisco.workflow.modiscoworkflow.ExportInfos#getSymbolicName
* <em>Symbolic Name</em>}' attribute. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Symbolic Name</em>' attribute.
* @see #getSymbolicName()
* @generated
*/
void setSymbolicName(String value);
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @model kind="operation"
* @generated
*/
EList<Element> getAllUnitsOfWork();
} // ExportInfos