blob: ba343ea893d5de0bd27e4106563fe50cc26498da [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.statemachine;
import org.eclipse.efm.ecore.formalml.common.NamedElement;
import org.eclipse.efm.ecore.formalml.infrastructure.ModelOfExecution;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Vertex</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.statemachine.Vertex#getTransition <em>Transition</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.statemachine.Vertex#getMoe <em>Moe</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.statemachine.StatemachinePackage#getVertex()
* @model
* @generated
*/
public interface Vertex extends NamedElement {
/**
* Returns the value of the '<em><b>Transition</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.efm.ecore.formalml.statemachine.Transition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Transition</em>' containment reference list.
* @see org.eclipse.efm.ecore.formalml.statemachine.StatemachinePackage#getVertex_Transition()
* @model containment="true"
* @generated
*/
EList<Transition> getTransition();
/**
* Returns the value of the '<em><b>Moe</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Moe</em>' containment reference.
* @see #setMoe(ModelOfExecution)
* @see org.eclipse.efm.ecore.formalml.statemachine.StatemachinePackage#getVertex_Moe()
* @model containment="true"
* @generated
*/
ModelOfExecution getMoe();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.statemachine.Vertex#getMoe <em>Moe</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Moe</em>' containment reference.
* @see #getMoe()
* @generated
*/
void setMoe(ModelOfExecution value);
} // Vertex