blob: cc8e8606c4771338bccaa7b063cb28cc5c14cf40 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package library;
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#getPages <em>Pages</em>}</li>
* <li>{@link library.Book#getCategory <em>Category</em>}</li>
* <li>{@link library.Book#getAuthor <em>Author</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 unique="false" required="true"
* @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>Pages</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Pages</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Pages</em>' attribute.
* @see #isSetPages()
* @see #unsetPages()
* @see #setPages(int)
* @see library.LibraryPackage#getBook_Pages()
* @model unique="false" unsettable="true" required="true"
* @generated
*/
int getPages();
/**
* Sets the value of the '{@link library.Book#getPages <em>Pages</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Pages</em>' attribute.
* @see #isSetPages()
* @see #unsetPages()
* @see #getPages()
* @generated
*/
void setPages(int value);
/**
* Unsets the value of the '{@link library.Book#getPages <em>Pages</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetPages()
* @see #getPages()
* @see #setPages(int)
* @generated
*/
void unsetPages();
/**
* Returns whether the value of the '{@link library.Book#getPages <em>Pages</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Pages</em>' attribute is set.
* @see #unsetPages()
* @see #getPages()
* @see #setPages(int)
* @generated
*/
boolean isSetPages();
/**
* Returns the value of the '<em><b>Category</b></em>' attribute.
* The literals are from the enumeration {@link library.BookCategory}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Category</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Category</em>' attribute.
* @see library.BookCategory
* @see #setCategory(BookCategory)
* @see library.LibraryPackage#getBook_Category()
* @model required="true"
* @generated
*/
BookCategory getCategory();
/**
* Sets the value of the '{@link library.Book#getCategory <em>Category</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Category</em>' attribute.
* @see library.BookCategory
* @see #getCategory()
* @generated
*/
void setCategory(BookCategory value);
/**
* Returns the value of the '<em><b>Author</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Author</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Author</em>' reference.
* @see #setAuthor(Writer)
* @see library.LibraryPackage#getBook_Author()
* @model required="true"
* @generated
*/
Writer getAuthor();
/**
* Sets the value of the '{@link library.Book#getAuthor <em>Author</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Author</em>' reference.
* @see #getAuthor()
* @generated
*/
void setAuthor(Writer value);
} // Book