forked from vogellacompany/codeexamples-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMymodelFactory.java
More file actions
46 lines (41 loc) · 1.04 KB
/
MymodelFactory.java
File metadata and controls
46 lines (41 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package mymodel;
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 mymodel.MymodelPackage
* @generated
*/
public interface MymodelFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
MymodelFactory eINSTANCE = mymodel.impl.MymodelFactoryImpl.init();
/**
* Returns a new object of class '<em>IPerson</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>IPerson</em>'.
* @generated
*/
IPerson createIPerson();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
MymodelPackage getMymodelPackage();
} //MymodelFactory