blob: 73ed9d2bcfad6972ce1266310dac09af5bc6ce09 [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:
* Gabriel Barbier (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - Bug 335003 - [Discoverer] : Existing Discoverers Refactoring based on new framework
*/
package org.eclipse.modisco.usecase.modelfilter.methodcalls.methodcalls;
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.usecase.modelfilter.methodcalls.methodcalls.MethodcallsPackage
* @generated
*/
public interface MethodcallsFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
MethodcallsFactory eINSTANCE = org.eclipse.modisco.usecase.modelfilter.methodcalls.methodcalls.impl.MethodcallsFactoryImpl.init();
/**
* Returns a new object of class '<em>Method Call</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Method Call</em>'.
* @generated
*/
MethodCall createMethodCall();
/**
* Returns a new object of class '<em>Calls Model</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Calls Model</em>'.
* @generated
*/
CallsModel createCallsModel();
/**
* Returns a new object of class '<em>Call Node</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Call Node</em>'.
* @generated
*/
CallNode createCallNode();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
MethodcallsPackage getMethodcallsPackage();
} //MethodcallsFactory