/* license-start * * Copyright (C) 2008 - 2013 Crispico, <http://www.crispico.com/>. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details, at <http://www.gnu.org/licenses/>. * * Contributors: * Crispico - Initial API and implementation * * license-end */ /** * <copyright> * </copyright> * * $Id$ */ package org.flowerplatform.emf_model.notation; 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 org.flowerplatform.emf_model.notation.NotationPackage * @generated */ public interface NotationFactory extends EFactory { /** * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ NotationFactory eINSTANCE = org.flowerplatform.emf_model.notation.impl.NotationFactoryImpl.init(); /** * Returns a new object of class '<em>Node</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Node</em>'. * @generated */ Node createNode(); /** * Returns a new object of class '<em>Category Separator</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Category Separator</em>'. * @generated */ CategorySeparator createCategorySeparator(); /** * Returns a new object of class '<em>Edge</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Edge</em>'. * @generated */ Edge createEdge(); /** * Returns a new object of class '<em>Diagram</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Diagram</em>'. * @generated */ Diagram createDiagram(); /** * Returns a new object of class '<em>Location</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Location</em>'. * @generated */ Location createLocation(); /** * Returns a new object of class '<em>Bounds</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Bounds</em>'. * @generated */ Bounds createBounds(); /** * Returns a new object of class '<em>Note</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Note</em>'. * @generated */ Note createNote(); /** * Returns a new object of class '<em>Mind Map Node</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Mind Map Node</em>'. * @generated */ MindMapNode createMindMapNode(); /** * Returns a new object of class '<em>Expandable Node</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Expandable Node</em>'. * @generated */ ExpandableNode createExpandableNode(); /** * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the package supported by this factory. * @generated */ NotationPackage getNotationPackage(); } //NotationFactory