1 /**
2  * Copyright (c) 2008, 2015 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *      IBM Corporation - initial API and implementation
13  */
14 package org.eclipse.e4.ui.model.application.ui;
15 
16 /**
17  * <!-- begin-user-doc -->
18  * The <b>Factory</b> for the model.
19  * It provides a create method for each non-abstract class of the model.
20  * <!-- end-user-doc -->
21  * @generated
22  */
23 public interface MUiFactory {
24 	/**
25 	 * The singleton instance of the factory.
26 	 * <!-- begin-user-doc -->
27 	 * <!-- end-user-doc -->
28 	 * @generated
29 	 */
30 	MUiFactory INSTANCE = org.eclipse.e4.ui.model.application.ui.impl.UiFactoryImpl.eINSTANCE;
31 
32 	/**
33 	 * Returns a new object of class '<em>Core Expression</em>'.
34 	 * <!-- begin-user-doc -->
35 	 * <!-- end-user-doc -->
36 	 * @return a new object of class '<em>Core Expression</em>'.
37 	 * @since 1.0
38 	 * @generated
39 	 */
createCoreExpression()40 	MCoreExpression createCoreExpression();
41 
42 	/**
43 	 * Returns a new object of class '<em>Imperative Expression</em>'.
44 	 * <!-- begin-user-doc -->
45 	 * <!-- end-user-doc -->
46 	 * @return a new object of class '<em>Imperative Expression</em>'.
47 	 * @generated
48 	 */
createImperativeExpression()49 	MImperativeExpression createImperativeExpression();
50 
51 } //MUiFactory
52