/******************************************************************************* * Copyright (c) 2006, 2009 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 v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM - Initial API and implementation * Zeligsoft - Bug 207365 *******************************************************************************/ package org.eclipse.ocl.expressions; import java.util.Map; import org.eclipse.emf.common.util.DiagnosticChain; 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: * </p> * <ul> * <li>{@link org.eclipse.ocl.expressions.LoopExp#getBody <em>Body</em>}</li> * <li>{@link org.eclipse.ocl.expressions.LoopExp#getIterator <em>Iterator</em>}</li> * </ul> * * @see org.eclipse.ocl.expressions.ExpressionsPackage#getLoopExp() * @model abstract="true" * @generated */ public interface LoopExp<C, PM> extends CallExp<C> { /** * 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.ocl.expressions.ExpressionsPackage#getLoopExp_Body() * @model containment="true" * @generated */ OCLExpression<C> getBody(); /** * Sets the value of the '{@link org.eclipse.ocl.expressions.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<C> value); /** * Returns the value of the '<em><b>Iterator</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.ocl.expressions.Variable}<C, PM>. * <!-- 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.ocl.expressions.ExpressionsPackage#getLoopExp_Iterator() * @model containment="true" * @generated */ EList<Variable<C, PM>> getIterator(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * source.type.oclIsKindOf(CollectionType) * @param diagnostics The chain of diagnostics to which problems are to be appended. * @param context The cache of context-specific information. * <!-- end-model-doc --> * @model * @generated */ boolean checkSourceCollection(DiagnosticChain diagnostics, Map<Object, Object> context); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * self.iterator->forAll(initExpression->isEmpty()) * @param diagnostics The chain of diagnostics to which problems are to be appended. * @param context The cache of context-specific information. * <!-- end-model-doc --> * @model * @generated */ boolean checkLoopVariableInit(DiagnosticChain diagnostics, Map<Object, Object> context); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * self.iterator->forAll(type = source.type.oclAsType(CollectionType).elementType) * @param diagnostics The chain of diagnostics to which problems are to be appended. * @param context The cache of context-specific information. * <!-- end-model-doc --> * @model * @generated */ boolean checkLoopVariableType(DiagnosticChain diagnostics, Map<Object, Object> context); } // LoopExp