org.eclipse.bpmn2.DataAssociation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Show all versions of kie-wb-common-stunner-bpmn-emf Show documentation
Kie Workbench - Common - Stunner - BPMN Definition Set - GWT Support for Eclipse EMF/XMI
/**
*
*
* Copyright (c) 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
*
*
*/
package org.eclipse.bpmn2;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Data Association'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.bpmn2.DataAssociation#getSourceRef Source Ref}
* - {@link org.eclipse.bpmn2.DataAssociation#getTargetRef Target Ref}
* - {@link org.eclipse.bpmn2.DataAssociation#getTransformation Transformation}
* - {@link org.eclipse.bpmn2.DataAssociation#getAssignment Assignment}
*
*
* @see org.eclipse.bpmn2.Bpmn2Package#getDataAssociation()
* @model extendedMetaData="name='tDataAssociation' kind='elementOnly'"
* @generated
*/
public interface DataAssociation extends BaseElement {
/**
* Returns the value of the 'Source Ref' reference list.
* The list contents are of type {@link org.eclipse.bpmn2.ItemAwareElement}.
*
*
* @return the value of the 'Source Ref' reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getDataAssociation_SourceRef()
* @model resolveProxies="false" ordered="false"
* extendedMetaData="kind='element' name='sourceRef' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
EList getSourceRef();
/**
* Returns the value of the 'Target Ref' reference.
*
*
* @return the value of the 'Target Ref' reference.
* @see #setTargetRef(ItemAwareElement)
* @see org.eclipse.bpmn2.Bpmn2Package#getDataAssociation_TargetRef()
* @model resolveProxies="false" required="true" ordered="false"
* extendedMetaData="kind='element' name='targetRef' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
ItemAwareElement getTargetRef();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.DataAssociation#getTargetRef Target Ref}' reference.
*
*
* @param value the new value of the 'Target Ref' reference.
* @see #getTargetRef()
* @generated
*/
void setTargetRef(ItemAwareElement value);
/**
* Returns the value of the 'Transformation' containment reference.
*
*
* @return the value of the 'Transformation' containment reference.
* @see #setTransformation(FormalExpression)
* @see org.eclipse.bpmn2.Bpmn2Package#getDataAssociation_Transformation()
* @model containment="true" ordered="false"
* extendedMetaData="kind='element' name='transformation' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
FormalExpression getTransformation();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.DataAssociation#getTransformation Transformation}' containment reference.
*
*
* @param value the new value of the 'Transformation' containment reference.
* @see #getTransformation()
* @generated
*/
void setTransformation(FormalExpression value);
/**
* Returns the value of the 'Assignment' containment reference list.
* The list contents are of type {@link org.eclipse.bpmn2.Assignment}.
*
*
* @return the value of the 'Assignment' containment reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getDataAssociation_Assignment()
* @model containment="true" ordered="false"
* extendedMetaData="kind='element' name='assignment' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
EList getAssignment();
} // DataAssociation
© 2015 - 2025 Weber Informatics LLC | Privacy Policy