blob: 49fcc343ca29163a204138564c94346172d174f6 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2011, 2015 University of Padova, Intecs
*
*
* 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
*
*
*****************************************************************************/
package org.polarsys.chess.chessmlprofile.ComponentModel;
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.polarsys.chess.chessmlprofile.ComponentModel.ComponentModelPackage
* @generated
*/
public interface ComponentModelFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ComponentModelFactory eINSTANCE = org.polarsys.chess.chessmlprofile.ComponentModel.impl.ComponentModelFactoryImpl.init();
/**
* Returns a new object of class '<em>Component Type</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Component Type</em>'.
* @generated
*/
ComponentType createComponentType();
/**
* Returns a new object of class '<em>Component Implementation</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Component Implementation</em>'.
* @generated
*/
ComponentImplementation createComponentImplementation();
/**
* Returns a new object of class '<em>Functional Partition</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Functional Partition</em>'.
* @generated
*/
FunctionalPartition createFunctionalPartition();
/**
* Returns a new object of class '<em>Hw Abstraction Component Impl</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Hw Abstraction Component Impl</em>'.
* @generated
*/
HwAbstractionComponentImpl createHwAbstractionComponentImpl();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ComponentModelPackage getComponentModelPackage();
} //ComponentModelFactory