/* 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 com.crispico.flower.mp.model.codesync; 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 com.crispico.flower.mp.model.codesync.CodeSyncPackage * @generated */ public interface CodeSyncFactory extends EFactory { /** * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ CodeSyncFactory eINSTANCE = com.crispico.flower.mp.model.codesync.impl.CodeSyncFactoryImpl.init(); /** * Returns a new object of class '<em>Element</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Element</em>'. * @generated */ CodeSyncElement createCodeSyncElement(); /** * Returns a new object of class '<em>Feature Change</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Feature Change</em>'. * @generated */ FeatureChange createFeatureChange(); /** * Returns a new object of class '<em>Root</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Root</em>'. * @generated */ CodeSyncRoot createCodeSyncRoot(); /** * Returns a new object of class '<em>Scenario Element</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Scenario Element</em>'. * @generated */ ScenarioElement createScenarioElement(); /** * Returns a new object of class '<em>Mind Map Element</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Mind Map Element</em>'. * @generated */ MindMapElement createMindMapElement(); /** * Returns a new object of class '<em>Mind Map Root</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Mind Map Root</em>'. * @generated */ MindMapRoot createMindMapRoot(); /** * Returns a new object of class '<em>Relation</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Relation</em>'. * @generated */ Relation createRelation(); /** * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the package supported by this factory. * @generated */ CodeSyncPackage getCodeSyncPackage(); } //CodeSyncFactory