org.eclipse.bpmn2.FormalExpression 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.ecore.util.FeatureMap;
/**
*
* A representation of the model object 'Formal Expression'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.bpmn2.FormalExpression#getMixed Mixed}
* - {@link org.eclipse.bpmn2.FormalExpression#getBody Body}
* - {@link org.eclipse.bpmn2.FormalExpression#getEvaluatesToTypeRef Evaluates To Type Ref}
* - {@link org.eclipse.bpmn2.FormalExpression#getLanguage Language}
*
*
* @see org.eclipse.bpmn2.Bpmn2Package#getFormalExpression()
* @model extendedMetaData="name='tFormalExpression' kind='mixed'"
* @generated
*/
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.eclipse.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.eclipse.bpmn2.Bpmn2Package#getFormalExpression_Body()
* @model required="true" volatile="true" derived="true" ordered="false"
* @generated
*/
String getBody();
/**
* Sets the value of the '{@link org.eclipse.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.eclipse.bpmn2.Bpmn2Package#getFormalExpression_EvaluatesToTypeRef()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='evaluatesToTypeRef'"
* @generated
*/
ItemDefinition getEvaluatesToTypeRef();
/**
* Sets the value of the '{@link org.eclipse.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.eclipse.bpmn2.Bpmn2Package#getFormalExpression_Language()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='language'"
* @generated
*/
String getLanguage();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.FormalExpression#getLanguage Language}' attribute.
*
*
* @param value the new value of the 'Language' attribute.
* @see #getLanguage()
* @generated
*/
void setLanguage(String value);
} // FormalExpression
© 2015 - 2025 Weber Informatics LLC | Privacy Policy