/** | |
* <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>Book</b></em>'. | |
* <!-- end-user-doc --> | |
* | |
* <p> | |
* The following features are supported: | |
* <ul> | |
* <li>{@link library.Book#getTitle <em>Title</em>}</li> | |
* <li>{@link library.Book#getAuthors <em>Authors</em>}</li> | |
* </ul> | |
* </p> | |
* | |
* @see library.LibraryPackage#getBook() | |
* @model | |
* @generated | |
*/ | |
public interface Book 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 library.LibraryPackage#getBook_Title() | |
* @model | |
* @generated | |
*/ | |
String getTitle(); | |
/** | |
* Sets the value of the '{@link library.Book#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>Authors</b></em>' reference list. | |
* The list contents are of type {@link library.Author}. | |
* <!-- begin-user-doc --> | |
* <p> | |
* If the meaning of the '<em>Authors</em>' 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>' reference list. | |
* @see library.LibraryPackage#getBook_Authors() | |
* @model | |
* @generated | |
*/ | |
EList<Author> getAuthors(); | |
} // Book |