/** * <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.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Sub Conversation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.obeonetwork.dsl.bpmn2.SubConversation#getConversationNodes <em>Conversation Nodes</em>}</li> * </ul> * * @see org.obeonetwork.dsl.bpmn2.Bpmn2Package#getSubConversation() * @model * @generated */ public interface SubConversation extends ConversationNode { /** * Returns the value of the '<em><b>Conversation Nodes</b></em>' containment reference list. * The list contents are of type {@link org.obeonetwork.dsl.bpmn2.ConversationNode}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Conversation Nodes</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Conversation Nodes</em>' containment reference list. * @see org.obeonetwork.dsl.bpmn2.Bpmn2Package#getSubConversation_ConversationNodes() * @model containment="true" ordered="false" * @generated */ EList<ConversationNode> getConversationNodes(); } // SubConversation