/** */ package model; 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: * </p> * <ul> * <li>{@link model.Book#getTitle <em>Title</em>}</li> * <li>{@link model.Book#getAuthors <em>Authors</em>}</li> * </ul> * * @see model.ModelPackage#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 model.ModelPackage#getBook_Title() * @model * @generated */ String getTitle(); /** * Sets the value of the '{@link model.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 model.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 model.ModelPackage#getBook_Authors() * @model * @generated */ EList<Author> getAuthors(); } // Book