org.omg.bpmn.bpmn2.FormalExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.omg.bpmn.model Show documentation
Show all versions of org.omg.bpmn.model Show documentation
Ecore and generated code for org.omg.bpmn2
The newest version!
/*
* Copyright (c) 2012 - 2024 Data In Motion and others.
* All rights reserved.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Mark Hoffmann - initial API and implementation
*/
package org.omg.bpmn.bpmn2;
import org.eclipse.emf.ecore.util.FeatureMap;
import org.osgi.annotation.versioning.ProviderType;
/**
*
* A representation of the model object 'Formal Expression'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.bpmn.bpmn2.FormalExpression#getMixed Mixed}
* - {@link org.omg.bpmn.bpmn2.FormalExpression#getBody Body}
* - {@link org.omg.bpmn.bpmn2.FormalExpression#getEvaluatesToTypeRef Evaluates To Type Ref}
* - {@link org.omg.bpmn.bpmn2.FormalExpression#getLanguage Language}
*
*
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getFormalExpression()
* @model extendedMetaData="name='tFormalExpression' kind='mixed'"
* @generated
*/
@ProviderType
public interface FormalExpression extends Expression {
/**
* Returns the value of the 'Mixed' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
*
*
* @return the value of the 'Mixed' attribute list.
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getFormalExpression_Mixed()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='elementWildcard' name=':mixed'"
* @generated
*/
FeatureMap getMixed();
/**
* Returns the value of the 'Body' attribute.
*
*
* @return the value of the 'Body' attribute.
* @see #setBody(String)
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getFormalExpression_Body()
* @model required="true" volatile="true" derived="true" ordered="false"
* @generated
*/
String getBody();
/**
* Sets the value of the '{@link org.omg.bpmn.bpmn2.FormalExpression#getBody Body}' attribute.
*
*
* @param value the new value of the 'Body' attribute.
* @see #getBody()
* @generated
*/
void setBody(String value);
/**
* Returns the value of the 'Evaluates To Type Ref' reference.
*
*
* @return the value of the 'Evaluates To Type Ref' reference.
* @see #setEvaluatesToTypeRef(ItemDefinition)
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getFormalExpression_EvaluatesToTypeRef()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='evaluatesToTypeRef'"
* @generated
*/
ItemDefinition getEvaluatesToTypeRef();
/**
* Sets the value of the '{@link org.omg.bpmn.bpmn2.FormalExpression#getEvaluatesToTypeRef Evaluates To Type Ref}' reference.
*
*
* @param value the new value of the 'Evaluates To Type Ref' reference.
* @see #getEvaluatesToTypeRef()
* @generated
*/
void setEvaluatesToTypeRef(ItemDefinition value);
/**
* Returns the value of the 'Language' attribute.
*
*
* @return the value of the 'Language' attribute.
* @see #setLanguage(String)
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getFormalExpression_Language()
* @model ordered="false"
* extendedMetaData="kind='attribute' name='language'"
* @generated
*/
String getLanguage();
/**
* Sets the value of the '{@link org.omg.bpmn.bpmn2.FormalExpression#getLanguage Language}' attribute.
*
*
* @param value the new value of the 'Language' attribute.
* @see #getLanguage()
* @generated
*/
void setLanguage(String value);
} // FormalExpression