/** | |
* <copyright> | |
* </copyright> | |
* | |
* $Id$ | |
*/ | |
package library; | |
import org.eclipse.emf.ecore.EFactory; | |
/** | |
* <!-- begin-user-doc --> | |
* The <b>Factory</b> for the model. | |
* It provides a create method for each non-abstract class of the model. | |
* <!-- end-user-doc --> | |
* @see library.LibraryPackage | |
* @generated | |
*/ | |
public interface LibraryFactory extends EFactory { | |
/** | |
* The singleton instance of the factory. | |
* <!-- begin-user-doc --> | |
* <!-- end-user-doc --> | |
* @generated | |
*/ | |
LibraryFactory eINSTANCE = library.impl.LibraryFactoryImpl.init(); | |
/** | |
* Returns a new object of class '<em>Library</em>'. | |
* <!-- begin-user-doc --> | |
* <!-- end-user-doc --> | |
* @return a new object of class '<em>Library</em>'. | |
* @generated | |
*/ | |
Library createLibrary(); | |
/** | |
* Returns a new object of class '<em>Book</em>'. | |
* <!-- begin-user-doc --> | |
* <!-- end-user-doc --> | |
* @return a new object of class '<em>Book</em>'. | |
* @generated | |
*/ | |
Book createBook(); | |
/** | |
* Returns a new object of class '<em>Author</em>'. | |
* <!-- begin-user-doc --> | |
* <!-- end-user-doc --> | |
* @return a new object of class '<em>Author</em>'. | |
* @generated | |
*/ | |
Author createAuthor(); | |
/** | |
* Returns the package supported by this factory. | |
* <!-- begin-user-doc --> | |
* <!-- end-user-doc --> | |
* @return the package supported by this factory. | |
* @generated | |
*/ | |
LibraryPackage getLibraryPackage(); | |
} //LibraryFactory |