blob: 2a6d7d12fe5a5622f391e6dc215cb9959e8aae7c [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.statement;
import org.eclipse.efm.ecore.formalml.expression.Expression;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Input Com Statement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.statement.InputComStatement#getLeftValue <em>Left Value</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getInputComStatement()
* @model
* @generated
*/
public interface InputComStatement extends AbstractComStatement {
/**
* Returns the value of the '<em><b>Left Value</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.efm.ecore.formalml.expression.Expression}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Left Value</em>' containment reference list.
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getInputComStatement_LeftValue()
* @model containment="true"
* @generated
*/
EList<Expression> getLeftValue();
} // InputComStatement