blob: 877bd901f28efecf9c3c86c026fd0a10dcdd0b07 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
/**
*/
package library;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.common.util.EList;
/**
* <!-- 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
* @extends CDOObject
* @generated
*/
public interface Library extends CDOObject {
/**
* 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