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

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

import org.eclipse.emf.ecore.EObject;

/**
 * 
 * A representation of the model object 'Relationship'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.eclipse.bpmn2.Relationship#getSources Sources}
  • *
  • {@link org.eclipse.bpmn2.Relationship#getTargets Targets}
  • *
  • {@link org.eclipse.bpmn2.Relationship#getDirection Direction}
  • *
  • {@link org.eclipse.bpmn2.Relationship#getType Type}
  • *
* * @see org.eclipse.bpmn2.Bpmn2Package#getRelationship() * @model extendedMetaData="name='tRelationship' kind='elementOnly'" * @generated */ public interface Relationship extends BaseElement { /** * Returns the value of the 'Sources' reference list. * The list contents are of type {@link org.eclipse.emf.ecore.EObject}. * * * @return the value of the 'Sources' reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getRelationship_Sources() * @model required="true" ordered="false" * extendedMetaData="kind='element' name='source' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ EList getSources(); /** * Returns the value of the 'Targets' reference list. * The list contents are of type {@link org.eclipse.emf.ecore.EObject}. * * * @return the value of the 'Targets' reference list. * @see org.eclipse.bpmn2.Bpmn2Package#getRelationship_Targets() * @model required="true" ordered="false" * extendedMetaData="kind='element' name='target' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ EList getTargets(); /** * Returns the value of the 'Direction' attribute. * The literals are from the enumeration {@link org.eclipse.bpmn2.RelationshipDirection}. * * * @return the value of the 'Direction' attribute. * @see org.eclipse.bpmn2.RelationshipDirection * @see #setDirection(RelationshipDirection) * @see org.eclipse.bpmn2.Bpmn2Package#getRelationship_Direction() * @model required="true" ordered="false" * extendedMetaData="kind='attribute' name='direction'" * @generated */ RelationshipDirection getDirection(); /** * Sets the value of the '{@link org.eclipse.bpmn2.Relationship#getDirection Direction}' attribute. * * * @param value the new value of the 'Direction' attribute. * @see org.eclipse.bpmn2.RelationshipDirection * @see #getDirection() * @generated */ void setDirection(RelationshipDirection value); /** * Returns the value of the 'Type' attribute. * * * @return the value of the 'Type' attribute. * @see #setType(String) * @see org.eclipse.bpmn2.Bpmn2Package#getRelationship_Type() * @model required="true" ordered="false" * extendedMetaData="kind='attribute' name='type'" * @generated */ String getType(); /** * Sets the value of the '{@link org.eclipse.bpmn2.Relationship#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see #getType() * @generated */ void setType(String value); } // Relationship




© 2015 - 2025 Weber Informatics LLC | Privacy Policy