| /** | |
| * <copyright> | |
| * </copyright> | |
| * | |
| * $Id$ | |
| */ | |
| package library; | |
| import org.eclipse.emf.common.util.EList; | |
| import org.eclipse.emf.ecore.EObject; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * A representation of the model object '<em><b>Library</b></em>'. | |
| * <!-- end-user-doc --> | |
| * | |
| * <p> | |
| * The following features are supported: | |
| * <ul> | |
| * <li>{@link library.Library#getBooks <em>Books</em>}</li> | |
| * <li>{@link library.Library#getAuthors <em>Authors</em>}</li> | |
| * </ul> | |
| * </p> | |
| * | |
| * @see library.LibraryPackage#getLibrary() | |
| * @model | |
| * @generated | |
| */ | |
| public interface Library extends EObject { | |
| /** | |
| * Returns the value of the '<em><b>Books</b></em>' containment reference list. | |
| * The list contents are of type {@link library.Book}. | |
| * <!-- begin-user-doc --> | |
| * <p> | |
| * If the meaning of the '<em>Books</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>Books</em>' containment reference list. | |
| * @see library.LibraryPackage#getLibrary_Books() | |
| * @model containment="true" | |
| * @generated | |
| */ | |
| EList<Book> getBooks(); | |
| /** | |
| * Returns the value of the '<em><b>Authors</b></em>' containment reference list. | |
| * The list contents are of type {@link library.Author}. | |
| * <!-- begin-user-doc --> | |
| * <p> | |
| * If the meaning of the '<em>Authors</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>Authors</em>' containment reference list. | |
| * @see library.LibraryPackage#getLibrary_Authors() | |
| * @model containment="true" | |
| * @generated | |
| */ | |
| EList<Author> getAuthors(); | |
| } // Library |