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

org.eclipse.bpmn2.InputOutputBinding 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;

/**
 * 
 * A representation of the model object 'Input Output Binding'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.eclipse.bpmn2.InputOutputBinding#getInputDataRef Input Data Ref}
  • *
  • {@link org.eclipse.bpmn2.InputOutputBinding#getOperationRef Operation Ref}
  • *
  • {@link org.eclipse.bpmn2.InputOutputBinding#getOutputDataRef Output Data Ref}
  • *
* * @see org.eclipse.bpmn2.Bpmn2Package#getInputOutputBinding() * @model extendedMetaData="name='tInputOutputBinding' kind='elementOnly'" * @generated */ public interface InputOutputBinding extends BaseElement { /** * Returns the value of the 'Input Data Ref' reference. * * * @return the value of the 'Input Data Ref' reference. * @see #setInputDataRef(InputSet) * @see org.eclipse.bpmn2.Bpmn2Package#getInputOutputBinding_InputDataRef() * @model resolveProxies="false" required="true" ordered="false" * extendedMetaData="kind='attribute' name='inputDataRef'" * @generated */ InputSet getInputDataRef(); /** * Sets the value of the '{@link org.eclipse.bpmn2.InputOutputBinding#getInputDataRef Input Data Ref}' reference. * * * @param value the new value of the 'Input Data Ref' reference. * @see #getInputDataRef() * @generated */ void setInputDataRef(InputSet value); /** * Returns the value of the 'Operation Ref' reference. * * * @return the value of the 'Operation Ref' reference. * @see #setOperationRef(Operation) * @see org.eclipse.bpmn2.Bpmn2Package#getInputOutputBinding_OperationRef() * @model required="true" ordered="false" * extendedMetaData="kind='attribute' name='operationRef'" * @generated */ Operation getOperationRef(); /** * Sets the value of the '{@link org.eclipse.bpmn2.InputOutputBinding#getOperationRef Operation Ref}' reference. * * * @param value the new value of the 'Operation Ref' reference. * @see #getOperationRef() * @generated */ void setOperationRef(Operation value); /** * Returns the value of the 'Output Data Ref' reference. * * * @return the value of the 'Output Data Ref' reference. * @see #setOutputDataRef(OutputSet) * @see org.eclipse.bpmn2.Bpmn2Package#getInputOutputBinding_OutputDataRef() * @model resolveProxies="false" required="true" ordered="false" * extendedMetaData="kind='attribute' name='outputDataRef'" * @generated */ OutputSet getOutputDataRef(); /** * Sets the value of the '{@link org.eclipse.bpmn2.InputOutputBinding#getOutputDataRef Output Data Ref}' reference. * * * @param value the new value of the 'Output Data Ref' reference. * @see #getOutputDataRef() * @generated */ void setOutputDataRef(OutputSet value); } // InputOutputBinding




© 2015 - 2025 Weber Informatics LLC | Privacy Policy