org.camunda.bpmn.model.Expression Maven / Gradle / Ivy
/*
* 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.camunda.bpmn.model;
import org.eclipse.emf.ecore.util.FeatureMap;
import org.osgi.annotation.versioning.ProviderType;
/**
*
* A representation of the model object 'Expression'.
*
*
*
* The following features are supported:
*
*
* - {@link org.camunda.bpmn.model.Expression#getBody Body}
* - {@link org.camunda.bpmn.model.Expression#getMixed Mixed}
*
*
* @see org.camunda.bpmn.model.CamundaPackage#getExpression()
* @model extendedMetaData="name='tExpression' kind='mixed'"
* @generated
*/
@ProviderType
public interface Expression extends org.omg.bpmn.bpmn2.Expression {
/**
* Returns the value of the 'Body' attribute.
*
*
* @return the value of the 'Body' attribute.
* @see #setBody(String)
* @see org.camunda.bpmn.model.CamundaPackage#getExpression_Body()
* @model required="true" volatile="true" derived="true" ordered="false"
* @generated
*/
String getBody();
/**
* Sets the value of the '{@link org.camunda.bpmn.model.Expression#getBody Body}' attribute.
*
*
* @param value the new value of the 'Body' attribute.
* @see #getBody()
* @generated
*/
void setBody(String value);
/**
* 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.camunda.bpmn.model.CamundaPackage#getExpression_Mixed()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='elementWildcard' name=':mixed'"
* @generated
*/
FeatureMap getMixed();
} // Expression