/** * <copyright> * </copyright> * * $Id: Site.java,v 1.4 2011/04/23 20:13:47 glefur Exp $ */ package org.eclipse.emf.samples.conference; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Site</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.samples.conference.Site#getDocumentation <em>Documentation</em>}</li> * <li>{@link org.eclipse.emf.samples.conference.Site#getName <em>Name</em>}</li> * <li>{@link org.eclipse.emf.samples.conference.Site#getRooms <em>Rooms</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.samples.conference.ConferencePackage#getSite() * @model * @generated */ public interface Site extends EObject { /** * Returns the value of the '<em><b>Documentation</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Documentation</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Documentation</em>' attribute. * @see #setDocumentation(String) * @see org.eclipse.emf.samples.conference.ConferencePackage#getSite_Documentation() * @model required="true" * @generated */ String getDocumentation(); /** * Sets the value of the '{@link org.eclipse.emf.samples.conference.Site#getDocumentation <em>Documentation</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Documentation</em>' attribute. * @see #getDocumentation() * @generated */ void setDocumentation(String value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.emf.samples.conference.ConferencePackage#getSite_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.samples.conference.Site#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Rooms</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.emf.samples.conference.Room}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Rooms</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>Rooms</em>' containment reference list. * @see org.eclipse.emf.samples.conference.ConferencePackage#getSite_Rooms() * @model containment="true" * @generated */ EList<Room> getRooms(); } // Site