org.omg.bpmn.bpmn2.ExtensionAttributeValue 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.EObject;
import org.eclipse.emf.ecore.util.FeatureMap;
import org.osgi.annotation.versioning.ProviderType;
/**
*
* A representation of the model object 'Extension Attribute Value'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.bpmn.bpmn2.ExtensionAttributeValue#getValueRef Value Ref}
* - {@link org.omg.bpmn.bpmn2.ExtensionAttributeValue#getValue Value}
* - {@link org.omg.bpmn.bpmn2.ExtensionAttributeValue#getExtensionAttributeDefinition Extension Attribute Definition}
*
*
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeValue()
* @model extendedMetaData="name='tExtensionElements' kind='elementOnly'"
* @generated
*/
@ProviderType
public interface ExtensionAttributeValue extends EObject {
/**
* Returns the value of the 'Value Ref' reference.
*
*
* @return the value of the 'Value Ref' reference.
* @see #setValueRef(EObject)
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeValue_ValueRef()
* @model transient="true" derived="true" ordered="false"
* @generated
*/
EObject getValueRef();
/**
* Sets the value of the '{@link org.omg.bpmn.bpmn2.ExtensionAttributeValue#getValueRef Value Ref}' reference.
*
*
* @param value the new value of the 'Value Ref' reference.
* @see #getValueRef()
* @generated
*/
void setValueRef(EObject value);
/**
* Returns the value of the 'Value' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
*
*
* @return the value of the 'Value' attribute list.
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeValue_Value()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='elementWildcard' wildcards='##other' name=':0' processing='lax'"
* @generated
*/
FeatureMap getValue();
/**
* Returns the value of the 'Extension Attribute Definition' reference.
*
*
* @return the value of the 'Extension Attribute Definition' reference.
* @see #setExtensionAttributeDefinition(ExtensionAttributeDefinition)
* @see org.omg.bpmn.bpmn2.Bpmn2Package#getExtensionAttributeValue_ExtensionAttributeDefinition()
* @model required="true" transient="true" derived="true" ordered="false"
* @generated
*/
ExtensionAttributeDefinition getExtensionAttributeDefinition();
/**
* Sets the value of the '{@link org.omg.bpmn.bpmn2.ExtensionAttributeValue#getExtensionAttributeDefinition Extension Attribute Definition}' reference.
*
*
* @param value the new value of the 'Extension Attribute Definition' reference.
* @see #getExtensionAttributeDefinition()
* @generated
*/
void setExtensionAttributeDefinition(ExtensionAttributeDefinition value);
} // ExtensionAttributeValue