/** * This is my code. */ package org.examples.library; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.examples.hr.Person; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Writer</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.examples.library.Writer#getBooks <em>Books</em>}</li> * </ul> * * @see org.examples.library.LibraryPackage#getWriter() * @model * @generated */ public interface Writer extends Person { /** * Returns the value of the '<em><b>Books</b></em>' reference list. * The list contents are of type {@link org.examples.library.Book}. * It is bidirectional and its opposite is '{@link org.examples.library.Book#getAuthor <em>Author</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Books</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>Books</em>' reference list. * @see org.examples.library.LibraryPackage#getWriter_Books() * @see org.examples.library.Book#getAuthor * @model opposite="author" * @generated */ EList<Book> getBooks(); } // Writer