blob: 0a195c681e5b21597b163fefc7a3fddc27b76563 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2014, 2018 CEA LIST 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:
* E.D.Willink(CEA LIST) - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.ocl.examples.codegen.cgmodel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>CG Is Equal2 Exp</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A CGIsEqualExp realizes the built-in "===" operation that has only a 2-valued true/false return.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGIsEqual2Exp#getArgument <em>Argument</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGIsEqual2Exp()
* @generated
*/
public interface CGIsEqual2Exp extends CGCallExp {
/**
* Returns the value of the '<em><b>Argument</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The argument expression for the call.
* <!-- end-model-doc -->
* @return the value of the '<em>Argument</em>' containment reference.
* @see #setArgument(CGValuedElement)
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGIsEqual2Exp_Argument()
* @generated
*/
CGValuedElement getArgument();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGIsEqual2Exp#getArgument <em>Argument</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Argument</em>' containment reference.
* @see #getArgument()
* @generated
*/
void setArgument(CGValuedElement value);
} // CGIsEqual2Exp