blob: df23f6d3a44f69fc0c48db3399b86872cad9e3bd [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;
import org.eclipse.efm.ecore.formalml.datatype.PrimitiveInstanceType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Literal Null Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.expression.LiteralNullExpression#getType <em>Type</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getLiteralNullExpression()
* @model
* @generated
*/
public interface LiteralNullExpression extends LiteralExpression {
/**
* Returns the value of the '<em><b>Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' containment reference.
* @see #setType(PrimitiveInstanceType)
* @see org.eclipse.efm.ecore.formalml.expression.ExpressionPackage#getLiteralNullExpression_Type()
* @model containment="true"
* @generated
*/
PrimitiveInstanceType getType();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.expression.LiteralNullExpression#getType <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' containment reference.
* @see #getType()
* @generated
*/
void setType(PrimitiveInstanceType value);
} // LiteralNullExpression