/** * <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>Router</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.obeonetwork.pim.gen.backbone.model.backbone.Router#getMappings <em>Mappings</em>}</li> * <li>{@link org.obeonetwork.pim.gen.backbone.model.backbone.Router#getApplication <em>Application</em>}</li> * </ul> * </p> * * @see org.obeonetwork.pim.gen.backbone.model.backbone.BackbonePackage#getRouter() * @model * @generated */ public interface Router extends NamedElement { /** * Returns the value of the '<em><b>Mappings</b></em>' containment reference list. * The list contents are of type {@link org.obeonetwork.pim.gen.backbone.model.backbone.RouterMapping}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mappings</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>Mappings</em>' containment reference list. * @see org.obeonetwork.pim.gen.backbone.model.backbone.BackbonePackage#getRouter_Mappings() * @model containment="true" * @generated */ EList<RouterMapping> getMappings(); /** * 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#getRouter <em>Router</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#getRouter_Application() * @see org.obeonetwork.pim.gen.backbone.model.backbone.Application#getRouter * @model opposite="router" required="true" transient="false" * @generated */ Application getApplication(); /** * Sets the value of the '{@link org.obeonetwork.pim.gen.backbone.model.backbone.Router#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); } // Router