blob: d98f418607ac894a48387bad2e9f0b49aa28b878 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2018 IBM Corporation, Zeligsoft Inc., and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
* Zeligsoft - Bug 243976
*******************************************************************************/
package org.eclipse.ocl.cst;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Variable Exp CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.cst.VariableExpCS#getArguments <em>Arguments</em>}</li>
* <li>{@link org.eclipse.ocl.cst.VariableExpCS#getSimpleNameCS <em>Simple Name CS</em>}</li>
* <li>{@link org.eclipse.ocl.cst.VariableExpCS#getIsMarkedPreCS <em>Is Marked Pre CS</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.cst.CSTPackage#getVariableExpCS()
* @model
* @generated
*/
public interface VariableExpCS
extends OCLExpressionCS {
/**
* Returns the value of the '<em><b>Arguments</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.cst.OCLExpressionCS}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Arguments</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Arguments</em>' containment reference list.
* @see org.eclipse.ocl.cst.CSTPackage#getVariableExpCS_Arguments()
* @model containment="true"
* @generated
*/
EList<OCLExpressionCS> getArguments();
/**
* Returns the value of the '<em><b>Simple Name CS</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Simple Name CS</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Simple Name CS</em>' containment reference.
* @see #setSimpleNameCS(SimpleNameCS)
* @see org.eclipse.ocl.cst.CSTPackage#getVariableExpCS_SimpleNameCS()
* @model containment="true"
* @generated
*/
SimpleNameCS getSimpleNameCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.VariableExpCS#getSimpleNameCS <em>Simple Name CS</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Simple Name CS</em>' containment reference.
* @see #getSimpleNameCS()
* @generated
*/
void setSimpleNameCS(SimpleNameCS value);
/**
* Returns the value of the '<em><b>Is Marked Pre CS</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Marked Pre CS</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Marked Pre CS</em>' containment reference.
* @see #setIsMarkedPreCS(IsMarkedPreCS)
* @see org.eclipse.ocl.cst.CSTPackage#getVariableExpCS_IsMarkedPreCS()
* @model containment="true"
* @generated
*/
IsMarkedPreCS getIsMarkedPreCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.VariableExpCS#getIsMarkedPreCS <em>Is Marked Pre CS</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Marked Pre CS</em>' containment reference.
* @see #getIsMarkedPreCS()
* @generated
*/
void setIsMarkedPreCS(IsMarkedPreCS value);
} // VariableExpCS