blob: a1cceb20e2845a96663652c4a15735b89da4e511 [file] [log] [blame]
/**
* <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#getWriters <em>Writers</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>Writers</b></em>' containment reference list.
* The list contents are of type {@link library.Writer}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Writers</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>Writers</em>' containment reference list.
* @see library.LibraryPackage#getLibrary_Writers()
* @model containment="true"
* @generated
*/
EList<Writer> getWriters();
} // Library