blob: f0dbe4b5a1001e33fd164c6e4b972eb61fb0712e [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST.
*
* 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\n\nContributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.infrastructure;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Behavior Part</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.BehaviorPart#getBehavior <em>Behavior</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.BehaviorPart#getMain <em>Main</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getBehaviorPart()
* @model
* @generated
*/
public interface BehaviorPart extends EObject {
/**
* Returns the value of the '<em><b>Behavior</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.efm.ecore.formalml.infrastructure.Behavior}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Behavior</em>' containment reference list.
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getBehaviorPart_Behavior()
* @model containment="true"
* @generated
*/
EList<Behavior> getBehavior();
/**
* Returns the value of the '<em><b>Main</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Main</em>' containment reference.
* @see #setMain(Behavior)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getBehaviorPart_Main()
* @model containment="true"
* @generated
*/
Behavior getMain();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.BehaviorPart#getMain <em>Main</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Main</em>' containment reference.
* @see #getMain()
* @generated
*/
void setMain(Behavior value);
} // BehaviorPart