All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.bpmn2.InputSet Maven / Gradle / Ivy

There is a newer version: 7.54.0.Final
Show newest version
/**
 * 
 * 
 * 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 'Input Set'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.eclipse.bpmn2.InputSet#getDataInputRefs Data Input Refs}
  • *
  • {@link org.eclipse.bpmn2.InputSet#getOptionalInputRefs Optional Input Refs}
  • *
  • {@link org.eclipse.bpmn2.InputSet#getWhileExecutingInputRefs While Executing Input Refs}
  • *
  • {@link org.eclipse.bpmn2.InputSet#getOutputSetRefs Output Set Refs}
  • *
  • {@link org.eclipse.bpmn2.InputSet#getName Name}
  • *
* * @see org.eclipse.bpmn2.Bpmn2Package#getInputSet() * @model extendedMetaData="name='tInputSet' kind='elementOnly'" * @generated */ public interface InputSet extends BaseElement { /** * Returns the value of the 'Data Input Refs' reference list. * The list contents are of type {@link org.eclipse.bpmn2.DataInput}. * It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.DataInput#getInputSetRefs Input Set Refs}'. * * * @return the value of the 'Data Input Refs' reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getInputSet_DataInputRefs() * @see org.eclipse.bpmn2.DataInput#getInputSetRefs * @model opposite="inputSetRefs" resolveProxies="false" ordered="false" * extendedMetaData="kind='element' name='dataInputRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ EList getDataInputRefs(); /** * Returns the value of the 'Optional Input Refs' reference list. * The list contents are of type {@link org.eclipse.bpmn2.DataInput}. * It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.DataInput#getInputSetWithOptional Input Set With Optional}'. * * * @return the value of the 'Optional Input Refs' reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getInputSet_OptionalInputRefs() * @see org.eclipse.bpmn2.DataInput#getInputSetWithOptional * @model opposite="inputSetWithOptional" resolveProxies="false" ordered="false" * extendedMetaData="kind='element' name='optionalInputRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ EList getOptionalInputRefs(); /** * Returns the value of the 'While Executing Input Refs' reference list. * The list contents are of type {@link org.eclipse.bpmn2.DataInput}. * It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.DataInput#getInputSetWithWhileExecuting Input Set With While Executing}'. * * * @return the value of the 'While Executing Input Refs' reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getInputSet_WhileExecutingInputRefs() * @see org.eclipse.bpmn2.DataInput#getInputSetWithWhileExecuting * @model opposite="inputSetWithWhileExecuting" resolveProxies="false" ordered="false" * extendedMetaData="kind='element' name='whileExecutingInputRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ EList getWhileExecutingInputRefs(); /** * Returns the value of the 'Output Set Refs' reference list. * The list contents are of type {@link org.eclipse.bpmn2.OutputSet}. * It is bidirectional and its opposite is '{@link org.eclipse.bpmn2.OutputSet#getInputSetRefs Input Set Refs}'. * * * @return the value of the 'Output Set Refs' reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getInputSet_OutputSetRefs() * @see org.eclipse.bpmn2.OutputSet#getInputSetRefs * @model opposite="inputSetRefs" resolveProxies="false" ordered="false" * extendedMetaData="kind='element' name='outputSetRefs' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ EList getOutputSetRefs(); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.bpmn2.Bpmn2Package#getInputSet_Name() * @model required="true" ordered="false" * extendedMetaData="kind='attribute' name='name'" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.bpmn2.InputSet#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // InputSet




© 2015 - 2025 Weber Informatics LLC | Privacy Policy