org.eclipse.bpmn2.OutputSet Maven / Gradle / Ivy
/**
*
*
* 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.common.util.EList;
/**
*
* A representation of the model object 'Output Set'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.bpmn2.OutputSet#getDataOutputRefs Data Output Refs}
* - {@link org.eclipse.bpmn2.OutputSet#getOptionalOutputRefs Optional Output Refs}
* - {@link org.eclipse.bpmn2.OutputSet#getWhileExecutingOutputRefs While Executing Output Refs}
* - {@link org.eclipse.bpmn2.OutputSet#getInputSetRefs Input Set Refs}
* - {@link org.eclipse.bpmn2.OutputSet#getName Name}
*
*
* @see org.eclipse.bpmn2.Bpmn2Package#getOutputSet()
* @model extendedMetaData="name='tOutputSet' kind='elementOnly'"
* @generated
*/
public interface OutputSet extends BaseElement {
/**
* Returns the value of the 'Data Output Refs' reference list.
* The list contents are of type {@link org.eclipse.bpmn2.DataOutput}.
* It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.DataOutput#getOutputSetRefs Output Set Refs}'.
*
*
* @return the value of the 'Data Output Refs' reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getOutputSet_DataOutputRefs()
* @see org.eclipse.bpmn2.DataOutput#getOutputSetRefs
* @model opposite="outputSetRefs" resolveProxies="false" ordered="false"
* extendedMetaData="kind='element' name='dataOutputRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
EList getDataOutputRefs();
/**
* Returns the value of the 'Optional Output Refs' reference list.
* The list contents are of type {@link org.eclipse.bpmn2.DataOutput}.
* It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.DataOutput#getOutputSetWithOptional Output Set With Optional}'.
*
*
* @return the value of the 'Optional Output Refs' reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getOutputSet_OptionalOutputRefs()
* @see org.eclipse.bpmn2.DataOutput#getOutputSetWithOptional
* @model opposite="outputSetWithOptional" resolveProxies="false" ordered="false"
* extendedMetaData="kind='element' name='optionalOutputRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
EList getOptionalOutputRefs();
/**
* Returns the value of the 'While Executing Output Refs' reference list.
* The list contents are of type {@link org.eclipse.bpmn2.DataOutput}.
* It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.DataOutput#getOutputSetWithWhileExecuting Output Set With While Executing}'.
*
*
* @return the value of the 'While Executing Output Refs' reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getOutputSet_WhileExecutingOutputRefs()
* @see org.eclipse.bpmn2.DataOutput#getOutputSetWithWhileExecuting
* @model opposite="outputSetWithWhileExecuting" resolveProxies="false" ordered="false"
* extendedMetaData="kind='element' name='whileExecutingOutputRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
EList getWhileExecutingOutputRefs();
/**
* Returns the value of the 'Input Set Refs' reference list.
* The list contents are of type {@link org.eclipse.bpmn2.InputSet}.
* It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.InputSet#getOutputSetRefs Output Set Refs}'.
*
*
* @return the value of the 'Input Set Refs' reference list.
* @see org.eclipse.bpmn2.Bpmn2Package#getOutputSet_InputSetRefs()
* @see org.eclipse.bpmn2.InputSet#getOutputSetRefs
* @model opposite="outputSetRefs" resolveProxies="false" ordered="false"
* extendedMetaData="kind='element' name='inputSetRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'"
* @generated
*/
EList getInputSetRefs();
/**
* Returns the value of the 'Name' attribute.
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.eclipse.bpmn2.Bpmn2Package#getOutputSet_Name()
* @model required="true" ordered="false"
* extendedMetaData="kind='attribute' name='name'"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.bpmn2.OutputSet#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
} // OutputSet
© 2015 - 2025 Weber Informatics LLC | Privacy Policy