/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Model View</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.acceleo.tutorial.webapp.ModelView#getCollection <em>Collection</em>}</li> * </ul> * </p> * * @see org.eclipse.acceleo.tutorial.webapp.WebappPackage#getModelView() * @model * @generated */ public interface ModelView extends AbstractView { /** * Returns the value of the '<em><b>Collection</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Collection</em>' 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>' reference. * @see #setCollection(Collection) * @see org.eclipse.acceleo.tutorial.webapp.WebappPackage#getModelView_Collection() * @model required="true" * @generated */ Collection getCollection(); /** * Sets the value of the '{@link org.eclipse.acceleo.tutorial.webapp.ModelView#getCollection <em>Collection</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Collection</em>' reference. * @see #getCollection() * @generated */ void setCollection(Collection value); } // ModelView