/** * <copyright> * </copyright> * */ package org.applause.lang.applauseDsl; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Collection Iterator</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.applause.lang.applauseDsl.CollectionIterator#getCollection <em>Collection</em>}</li> * </ul> * </p> * * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getCollectionIterator() * @model * @generated */ public interface CollectionIterator extends VariableDeclaration { /** * Returns the value of the '<em><b>Collection</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Collection</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>Collection</em>' containment reference. * @see #setCollection(CollectionExpression) * @see org.applause.lang.applauseDsl.ApplauseDslPackage#getCollectionIterator_Collection() * @model containment="true" * @generated */ CollectionExpression getCollection(); /** * Sets the value of the '{@link org.applause.lang.applauseDsl.CollectionIterator#getCollection <em>Collection</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Collection</em>' containment reference. * @see #getCollection() * @generated */ void setCollection(CollectionExpression value); } // CollectionIterator