blob: 4a8d893984600faad2f2fb64be307ac70c667898 [file] [log] [blame]
/**
* Copyright (c) 2018 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
*
* Contributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.expression;
import org.eclipse.efm.ecore.formalml.datatype.DataType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Cast Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.expression.CastExpression#getDatatype <em>Datatype</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getCastExpression()
* @model
* @generated
*/
public interface CastExpression extends UnaryExpression {
/**
* Returns the value of the '<em><b>Datatype</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Datatype</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Datatype</em>' reference.
* @see #setDatatype(DataType)
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getCastExpression_Datatype()
* @model
* @generated
*/
DataType getDatatype();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.expression.CastExpression#getDatatype <em>Datatype</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Datatype</em>' reference.
* @see #getDatatype()
* @generated
*/
void setDatatype(DataType value);
} // CastExpression