/** * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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 * * Contributors: * Eike Stepper - initial API and implementation * * Initial Publication: * Eclipse Magazin - http://www.eclipse-magazin.de */ package org.gastro.inventory; import org.eclipse.emf.ecore.EFactory; /** * The Factory for the model. It provides a create method for each non-abstract class of * the model. * * @see org.gastro.inventory.InventoryPackage * @generated */ public interface InventoryFactory extends EFactory { /** * The singleton instance of the factory. * * @generated */ InventoryFactory eINSTANCE = org.gastro.inventory.impl.InventoryFactoryImpl.init(); /** * Returns a new object of class 'Stock'. * * @return a new object of class 'Stock'. * @generated */ Stock createStock(); /** * Returns a new object of class 'Stock Product'. * * @return a new object of class 'Stock Product'. * @generated */ StockProduct createStockProduct(); /** * Returns a new object of class 'Recipe'. * * @return a new object of class 'Recipe'. * @generated */ Recipe createRecipe(); /** * Returns a new object of class 'Ingredient'. * * @return a new object of class 'Ingredient'. * @generated */ Ingredient createIngredient(); /** * Returns a new object of class 'Menu Card'. * * @return a new object of class 'Menu Card'. * @generated */ MenuCard createMenuCard(); /** * Returns a new object of class 'Restaurant'. * * @return a new object of class 'Restaurant'. * @generated */ Restaurant createRestaurant(); /** * Returns a new object of class 'Department'. * * @return a new object of class 'Department'. * @generated */ Department createDepartment(); /** * Returns a new object of class 'Offering'. * * @return a new object of class 'Offering'. * @generated */ Offering createOffering(); /** * Returns a new object of class 'Table'. * * @return a new object of class 'Table'. * @generated */ Table createTable(); /** * Returns a new object of class 'Employee'. * * @return a new object of class 'Employee'. * @generated */ Employee createEmployee(); /** * Returns a new object of class 'Section'. * * @return a new object of class 'Section'. * @generated */ Section createSection(); /** * Returns the package supported by this factory. * * @return the package supported by this factory. * @generated */ InventoryPackage getInventoryPackage(); } // InventoryFactory