blob: 4b13882e190fdd09abf719dc1737e7ab2f3331a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Fabien Giquel (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - Bug 335003 - [Discoverer] : Existing Discoverers Refactoring based on new framework
*******************************************************************************/
package org.eclipse.modisco.kdm.source.extension;
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.eclipse.modisco.kdm.source.extension.ExtensionPackage
* @generated
*/
public interface ExtensionFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @generated
*/
ExtensionFactory eINSTANCE = org.eclipse.modisco.kdm.source.extension.impl.ExtensionFactoryImpl.init();
/**
* Returns a new object of class '<em>AST Node Source Region</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>AST Node Source Region</em>'.
* @generated
*/
ASTNodeSourceRegion createASTNodeSourceRegion();
/**
* Returns a new object of class '<em>Code Unit2 File</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Code Unit2 File</em>'.
* @generated
*/
CodeUnit2File createCodeUnit2File();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ExtensionPackage getExtensionPackage();
} // ExtensionFactory