blob: 5d80309ab5ffdc11ce97bc9e52d21092fac715bd [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007, 2008 E.D.Willink and others.
* 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id: RelationCallExp.java,v 1.4 2009/01/14 21:02:27 ewillink Exp $
*/
package org.eclipse.qvt.declarative.ecore.QVTRelation;
import org.eclipse.emf.common.util.EList;
import org.eclipse.ocl.ecore.OCLExpression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Relation Call Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.ecore.QVTRelation.RelationCallExp#getArgument <em>Argument</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.ecore.QVTRelation.RelationCallExp#getReferredRelation <em>Referred Relation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.ecore.QVTRelation.QVTRelationPackage#getRelationCallExp()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='PatternExists\r\nRelationExists\r\nInvokedFromWhenOrWhereClause\r\nReferredRelationDeclaredByTransformation\r\nReferredRelationArgumentNumberMatches\r\nEveryWhenReferredRelationArgumentTypeMatches\r\nEveryWhereReferredRelationArgumentTypeIsMatchableWarning\r\nTypeIsBoolean\r\n'"
* @generated
*/
public interface RelationCallExp extends OCLExpression {
/**
* Returns the value of the '<em><b>Argument</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ocl.ecore.OCLExpression}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Argument</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>Argument</em>' containment reference list.
* @see org.eclipse.qvt.declarative.ecore.QVTRelation.QVTRelationPackage#getRelationCallExp_Argument()
* @model containment="true" lower="2"
* @generated
*/
EList<OCLExpression> getArgument();
/**
* Returns the value of the '<em><b>Referred Relation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Referred Relation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Referred Relation</em>' reference.
* @see #setReferredRelation(Relation)
* @see org.eclipse.qvt.declarative.ecore.QVTRelation.QVTRelationPackage#getRelationCallExp_ReferredRelation()
* @model required="true"
* @generated
*/
Relation getReferredRelation();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.ecore.QVTRelation.RelationCallExp#getReferredRelation <em>Referred Relation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Referred Relation</em>' reference.
* @see #getReferredRelation()
* @generated
*/
void setReferredRelation(Relation value);
} // RelationCallExp