
org.omg.spec.bpmn.model.TDataAssociation Maven / Gradle / Ivy
/**
* Copyright (C) 2023 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2.0 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.omg.spec.bpmn.model;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'TData Association'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.spec.bpmn.model.TDataAssociation#getSourceRef Source Ref}
* - {@link org.omg.spec.bpmn.model.TDataAssociation#getTargetRef Target Ref}
* - {@link org.omg.spec.bpmn.model.TDataAssociation#getTransformation Transformation}
* - {@link org.omg.spec.bpmn.model.TDataAssociation#getAssignment Assignment}
*
*
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataAssociation()
* @model extendedMetaData="name='tDataAssociation' kind='elementOnly'"
* @generated
*/
public interface TDataAssociation extends TBaseElement {
/**
* Returns the value of the 'Source Ref' attribute list.
* The list contents are of type {@link java.lang.String}.
*
*
* @return the value of the 'Source Ref' attribute list.
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataAssociation_SourceRef()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.IDREF"
* extendedMetaData="kind='element' name='sourceRef' namespace='##targetNamespace'"
* @generated
*/
EList getSourceRef();
/**
* Returns the value of the 'Target Ref' attribute.
*
*
* @return the value of the 'Target Ref' attribute.
* @see #setTargetRef(String)
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataAssociation_TargetRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.IDREF" required="true"
* extendedMetaData="kind='element' name='targetRef' namespace='##targetNamespace'"
* @generated
*/
String getTargetRef();
/**
* Sets the value of the '{@link org.omg.spec.bpmn.model.TDataAssociation#getTargetRef Target Ref}' attribute.
*
*
* @param value the new value of the 'Target Ref' attribute.
* @see #getTargetRef()
* @generated
*/
void setTargetRef(String value);
/**
* Returns the value of the 'Transformation' containment reference.
*
*
* @return the value of the 'Transformation' containment reference.
* @see #setTransformation(TFormalExpression)
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataAssociation_Transformation()
* @model containment="true"
* extendedMetaData="kind='element' name='transformation' namespace='##targetNamespace'"
* @generated
*/
TFormalExpression getTransformation();
/**
* Sets the value of the '{@link org.omg.spec.bpmn.model.TDataAssociation#getTransformation Transformation}' containment reference.
*
*
* @param value the new value of the 'Transformation' containment reference.
* @see #getTransformation()
* @generated
*/
void setTransformation(TFormalExpression value);
/**
* Returns the value of the 'Assignment' containment reference list.
* The list contents are of type {@link org.omg.spec.bpmn.model.TAssignment}.
*
*
* @return the value of the 'Assignment' containment reference list.
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataAssociation_Assignment()
* @model containment="true"
* extendedMetaData="kind='element' name='assignment' namespace='##targetNamespace'"
* @generated
*/
EList getAssignment();
} // TDataAssociation
© 2015 - 2025 Weber Informatics LLC | Privacy Policy