blob: 95de558f973d5fa229d499e287f30f81684c6b44 [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: LoopExp.java,v 1.2 2009/11/19 10:29:31 ewillink Exp $
*/
package org.eclipse.qvt.declarative.emof.EssentialOCL;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Loop Exp</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.qvt.declarative.emof.EssentialOCL.LoopExp#getBody <em>Body</em>}</li>
* <li>{@link org.eclipse.qvt.declarative.emof.EssentialOCL.LoopExp#getIterator <em>Iterator</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getLoopExp()
* @model abstract="true"
* @generated
*/
public interface LoopExp extends CallExp, OclExpression {
/**
* Returns the value of the '<em><b>Body</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Body</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>Body</em>' containment reference.
* @see #setBody(OclExpression)
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getLoopExp_Body()
* @model containment="true" required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='loopBodyOwner'"
* @generated
*/
OclExpression getBody();
/**
* Sets the value of the '{@link org.eclipse.qvt.declarative.emof.EssentialOCL.LoopExp#getBody <em>Body</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Body</em>' containment reference.
* @see #getBody()
* @generated
*/
void setBody(OclExpression value);
/**
* Returns the value of the '<em><b>Iterator</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvt.declarative.emof.EssentialOCL.Variable}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Iterator</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>Iterator</em>' containment reference list.
* @see org.eclipse.qvt.declarative.emof.EssentialOCL.EssentialOCLPackage#getLoopExp_Iterator()
* @model containment="true"
* @generated
*/
EList<Variable> getIterator();
} // LoopExp