/** * <copyright> * </copyright> * * $Id$ */ package org.obeonetwork.pim.gen.bootstrap.model.bootstrap; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Section</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getTitle <em>Title</em>}</li> * <li>{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getDescription <em>Description</em>}</li> * <li>{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getWidgets <em>Widgets</em>}</li> * <li>{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getPage <em>Page</em>}</li> * </ul> * </p> * * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.BootstrapPackage#getSection() * @model * @generated */ public interface Section extends EObject { /** * Returns the value of the '<em><b>Title</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Title</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Title</em>' attribute. * @see #setTitle(String) * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.BootstrapPackage#getSection_Title() * @model required="true" * @generated */ String getTitle(); /** * Sets the value of the '{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getTitle <em>Title</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Title</em>' attribute. * @see #getTitle() * @generated */ void setTitle(String value); /** * Returns the value of the '<em><b>Description</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Description</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.BootstrapPackage#getSection_Description() * @model required="true" * @generated */ String getDescription(); /** * Sets the value of the '{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getDescription <em>Description</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Description</em>' attribute. * @see #getDescription() * @generated */ void setDescription(String value); /** * Returns the value of the '<em><b>Widgets</b></em>' containment reference list. * The list contents are of type {@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Widget}. * It is bidirectional and its opposite is '{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Widget#getSection <em>Section</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Widgets</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>Widgets</em>' containment reference list. * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.BootstrapPackage#getSection_Widgets() * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Widget#getSection * @model opposite="section" containment="true" required="true" * @generated */ EList<Widget> getWidgets(); /** * Returns the value of the '<em><b>Page</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Page#getSections <em>Sections</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Page</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>Page</em>' container reference. * @see #setPage(Page) * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.BootstrapPackage#getSection_Page() * @see org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Page#getSections * @model opposite="sections" required="true" transient="false" * @generated */ Page getPage(); /** * Sets the value of the '{@link org.obeonetwork.pim.gen.bootstrap.model.bootstrap.Section#getPage <em>Page</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Page</em>' container reference. * @see #getPage() * @generated */ void setPage(Page value); } // Section