blob: 3356060bb3a2da736031ccbb613b0748d7adc66b [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.expression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>As Port</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.expression.ExpressionAsPort#getPort <em>Port</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getExpressionAsPort()
* @model
* @generated
*/
public interface ExpressionAsPort extends Expression {
/**
* Returns the value of the '<em><b>Port</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Port</em>' containment reference.
* @see #setPort(Expression)
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getExpressionAsPort_Port()
* @model containment="true" required="true"
* @generated
*/
Expression getPort();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.expression.ExpressionAsPort#getPort <em>Port</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Port</em>' containment reference.
* @see #getPort()
* @generated
*/
void setPort(Expression value);
} // ExpressionAsPort