/** * <copyright> * </copyright> * * $Id$ */ package org.obeonetwork.pim.gen.backbone.model.backbone; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>View</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.obeonetwork.pim.gen.backbone.model.backbone.View#getOperations <em>Operations</em>}</li> * <li>{@link org.obeonetwork.pim.gen.backbone.model.backbone.View#getApplication <em>Application</em>}</li> * </ul> * </p> * * @see org.obeonetwork.pim.gen.backbone.model.backbone.BackbonePackage#getView() * @model * @generated */ public interface View extends NamedElement { /** * Returns the value of the '<em><b>Operations</b></em>' reference list. * The list contents are of type {@link org.obeonetwork.pim.gen.backbone.model.backbone.Operation}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Operations</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Operations</em>' reference list. * @see org.obeonetwork.pim.gen.backbone.model.backbone.BackbonePackage#getView_Operations() * @model * @generated */ EList<Operation> getOperations(); /** * Returns the value of the '<em><b>Application</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.obeonetwork.pim.gen.backbone.model.backbone.Application#getViews <em>Views</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Application</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Application</em>' container reference. * @see #setApplication(Application) * @see org.obeonetwork.pim.gen.backbone.model.backbone.BackbonePackage#getView_Application() * @see org.obeonetwork.pim.gen.backbone.model.backbone.Application#getViews * @model opposite="views" required="true" transient="false" * @generated */ Application getApplication(); /** * Sets the value of the '{@link org.obeonetwork.pim.gen.backbone.model.backbone.View#getApplication <em>Application</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Application</em>' container reference. * @see #getApplication() * @generated */ void setApplication(Application value); } // View