/** * <copyright> * </copyright> * * $Id: ProcessintegrationFactory.java,v 1.2 2011/03/05 21:52:05 auhl Exp $ */ package integration.processintegration; 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 integration.processintegration.ProcessintegrationPackage * @generated */ public interface ProcessintegrationFactory extends EFactory { /** * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ ProcessintegrationFactory eINSTANCE = integration.processintegration.impl.ProcessintegrationFactoryImpl.init(); /** * Returns a new object of class '<em>Integration Scenario</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Integration Scenario</em>'. * @generated */ IntegrationScenario createIntegrationScenario(); /** * Returns a new object of class '<em>Process Component Interaction</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Process Component Interaction</em>'. * @generated */ ProcessComponentInteraction createProcessComponentInteraction(); /** * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the package supported by this factory. * @generated */ ProcessintegrationPackage getProcessintegrationPackage(); } //ProcessintegrationFactory