/** * <copyright> * * Copyright (c) 2011-2013 Obeo. * 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: * Obeo - initial API and implementation * * </copyright> */ package org.obeonetwork.dsl.bpmn2; import org.eclipse.emf.cdo.CDOObject; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Interaction Node</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.obeonetwork.dsl.bpmn2.InteractionNode#getIncomingConversationLinks <em>Incoming Conversation Links</em>}</li> * <li>{@link org.obeonetwork.dsl.bpmn2.InteractionNode#getOutgoingConversationLinks <em>Outgoing Conversation Links</em>}</li> * </ul> * * @see org.obeonetwork.dsl.bpmn2.Bpmn2Package#getInteractionNode() * @model abstract="true" * @extends CDOObject * @generated */ public interface InteractionNode extends CDOObject { /** * Returns the value of the '<em><b>Incoming Conversation Links</b></em>' reference list. * The list contents are of type {@link org.obeonetwork.dsl.bpmn2.ConversationLink}. * It is bidirectional and its opposite is '{@link org.obeonetwork.dsl.bpmn2.ConversationLink#getTargetRef <em>Target Ref</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Incoming Conversation Links</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Incoming Conversation Links</em>' reference list. * @see org.obeonetwork.dsl.bpmn2.Bpmn2Package#getInteractionNode_IncomingConversationLinks() * @see org.obeonetwork.dsl.bpmn2.ConversationLink#getTargetRef * @model opposite="targetRef" transient="true" changeable="false" derived="true" ordered="false" * @generated */ EList<ConversationLink> getIncomingConversationLinks(); /** * Returns the value of the '<em><b>Outgoing Conversation Links</b></em>' reference list. * The list contents are of type {@link org.obeonetwork.dsl.bpmn2.ConversationLink}. * It is bidirectional and its opposite is '{@link org.obeonetwork.dsl.bpmn2.ConversationLink#getSourceRef <em>Source Ref</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Outgoing Conversation Links</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Outgoing Conversation Links</em>' reference list. * @see org.obeonetwork.dsl.bpmn2.Bpmn2Package#getInteractionNode_OutgoingConversationLinks() * @see org.obeonetwork.dsl.bpmn2.ConversationLink#getSourceRef * @model opposite="sourceRef" transient="true" changeable="false" derived="true" ordered="false" * @generated */ EList<ConversationLink> getOutgoingConversationLinks(); } // InteractionNode