/** */ package model; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Author</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link model.Author#getFirstName <em>First Name</em>}</li> * <li>{@link model.Author#getLastName <em>Last Name</em>}</li> * </ul> * * @see model.ModelPackage#getAuthor() * @model * @generated */ public interface Author extends EObject { /** * Returns the value of the '<em><b>First Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>First Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>First Name</em>' attribute. * @see #setFirstName(String) * @see model.ModelPackage#getAuthor_FirstName() * @model * @generated */ String getFirstName(); /** * Sets the value of the '{@link model.Author#getFirstName <em>First Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>First Name</em>' attribute. * @see #getFirstName() * @generated */ void setFirstName(String value); /** * Returns the value of the '<em><b>Last Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Last Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Last Name</em>' attribute. * @see #setLastName(String) * @see model.ModelPackage#getAuthor_LastName() * @model * @generated */ String getLastName(); /** * Sets the value of the '{@link model.Author#getLastName <em>Last Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Last Name</em>' attribute. * @see #getLastName() * @generated */ void setLastName(String value); } // Author