package org.eclipse.emf.texo.test.model.samples.extlibrary; import java.util.ArrayList; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.JoinTable; import javax.persistence.OneToMany; import javax.persistence.OrderColumn; import org.eclipse.emf.texo.test.TexoTestObjectConverter; import org.eclipse.emf.texo.test.TexoTestQNameConverter; import org.eclipse.persistence.annotations.Converter; import org.eclipse.persistence.annotations.Converters; /** * A representation of the model object '<em><b>Writer</b></em>'. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Entity(name = "extlib_Writer") @Converters({ @Converter(converterClass = TexoTestObjectConverter.class, name = "TexoTestObjectConverter"), @Converter(converterClass = TexoTestQNameConverter.class, name = "TexoTestQNameConverter") }) public class Writer extends Person { /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @OneToMany(cascade = { CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REFRESH }) @OrderColumn() @JoinTable() private List<Book> books = new ArrayList<Book>(); /** * Returns the value of '<em><b>name</b></em>' feature. * * <!-- begin-user-doc --> <!-- end-user-doc --> * * @return the value of '<em><b>name</b></em>' feature * @generated */ public String getName() { // Volatile feature // TODO: implement this method to return the 'name' // Ensure that you remove @generated or mark it @generated NOT throw new UnsupportedOperationException(); } /** * Sets the '{@link Writer#getName() <em>name</em>}' feature. * * <!-- begin-user-doc --> <!-- end-user-doc --> * * @param newName * the new value of the '{@link Writer#getName() name}' feature. * @generated */ public void setName(String newName) { // Volatile feature // TODO: implement this method to set the 'name' // Ensure that you remove @generated or mark it @generated NOT throw new UnsupportedOperationException(); } /** * Returns the value of '<em><b>books</b></em>' feature. * * <!-- begin-user-doc --> <!-- end-user-doc --> * * @return the value of '<em><b>books</b></em>' feature * @generated */ public List<Book> getBooks() { return books; } /** * Sets the '{@link Writer#getBooks() <em>books</em>}' feature. * * <!-- begin-user-doc --> <!-- end-user-doc --> * * @param newBooks * the new value of the '{@link Writer#getBooks() books}' feature. * @generated */ public void setBooks(List<Book> newBooks) { books = newBooks; } /** * A toString method which prints the values of all EAttributes of this instance. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @generated */ @Override public String toString() { return "Writer " + " [name: " + getName() + "]" + "{extends: " + super.toString() + "} "; } }