blob: c7abbe9a87aecc4a6b44744daca29119e3cd83d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
/**
*/
package library;
import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.common.util.EList;
/**
* <!-- 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#getAuthors <em>Authors</em>}</li>
* <li>{@link library.Book#getPages <em>Pages</em>}</li>
* </ul>
* </p>
*
* @see library.LibraryPackage#getBook()
* @model
* @extends CDOObject
* @generated
*/
public interface Book extends CDOObject {
/**
* 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
* @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>Authors</b></em>' reference list.
* The list contents are of type {@link library.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 library.LibraryPackage#getBook_Authors()
* @model
* @generated
*/
EList<Author> getAuthors();
/**
* 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 #setPages(int)
* @see library.LibraryPackage#getBook_Pages()
* @model
* @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 #getPages()
* @generated
*/
void setPages(int value);
} // Book