
org.omg.spec.bpmn.model.TDataObject Maven / Gradle / Ivy
/**
* Copyright (C) 2023 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2.0 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.omg.spec.bpmn.model;
import javax.xml.namespace.QName;
/**
*
* A representation of the model object 'TData Object'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.spec.bpmn.model.TDataObject#getDataState Data State}
* - {@link org.omg.spec.bpmn.model.TDataObject#isIsCollection Is Collection}
* - {@link org.omg.spec.bpmn.model.TDataObject#getItemSubjectRef Item Subject Ref}
*
*
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataObject()
* @model extendedMetaData="name='tDataObject' kind='elementOnly'"
* @generated
*/
public interface TDataObject extends TFlowElement {
/**
* Returns the value of the 'Data State' containment reference.
*
*
* @return the value of the 'Data State' containment reference.
* @see #setDataState(TDataState)
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataObject_DataState()
* @model containment="true"
* extendedMetaData="kind='element' name='dataState' namespace='##targetNamespace'"
* @generated
*/
TDataState getDataState();
/**
* Sets the value of the '{@link org.omg.spec.bpmn.model.TDataObject#getDataState Data State}' containment reference.
*
*
* @param value the new value of the 'Data State' containment reference.
* @see #getDataState()
* @generated
*/
void setDataState(TDataState value);
/**
* Returns the value of the 'Is Collection' attribute.
* The default value is "false"
.
*
*
* @return the value of the 'Is Collection' attribute.
* @see #isSetIsCollection()
* @see #unsetIsCollection()
* @see #setIsCollection(boolean)
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataObject_IsCollection()
* @model default="false" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean"
* extendedMetaData="kind='attribute' name='isCollection'"
* @generated
*/
boolean isIsCollection();
/**
* Sets the value of the '{@link org.omg.spec.bpmn.model.TDataObject#isIsCollection Is Collection}' attribute.
*
*
* @param value the new value of the 'Is Collection' attribute.
* @see #isSetIsCollection()
* @see #unsetIsCollection()
* @see #isIsCollection()
* @generated
*/
void setIsCollection(boolean value);
/**
* Unsets the value of the '{@link org.omg.spec.bpmn.model.TDataObject#isIsCollection Is Collection}' attribute.
*
*
* @see #isSetIsCollection()
* @see #isIsCollection()
* @see #setIsCollection(boolean)
* @generated
*/
void unsetIsCollection();
/**
* Returns whether the value of the '{@link org.omg.spec.bpmn.model.TDataObject#isIsCollection Is Collection}' attribute is set.
*
*
* @return whether the value of the 'Is Collection' attribute is set.
* @see #unsetIsCollection()
* @see #isIsCollection()
* @see #setIsCollection(boolean)
* @generated
*/
boolean isSetIsCollection();
/**
* Returns the value of the 'Item Subject Ref' attribute.
*
*
* @return the value of the 'Item Subject Ref' attribute.
* @see #setItemSubjectRef(QName)
* @see org.omg.spec.bpmn.model.ModelPackage#getTDataObject_ItemSubjectRef()
* @model dataType="org.eclipse.emf.ecore.xml.type.QName"
* extendedMetaData="kind='attribute' name='itemSubjectRef'"
* @generated
*/
QName getItemSubjectRef();
/**
* Sets the value of the '{@link org.omg.spec.bpmn.model.TDataObject#getItemSubjectRef Item Subject Ref}' attribute.
*
*
* @param value the new value of the 'Item Subject Ref' attribute.
* @see #getItemSubjectRef()
* @generated
*/
void setItemSubjectRef(QName value);
} // TDataObject
© 2015 - 2025 Weber Informatics LLC | Privacy Policy