blob: 5ce06a414fd46de8ae3ac830cc5f7dc6d1b2433e (
plain) (
blame)
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
47
48
49
50
51
52
53
54
55
56
57
|
<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="club" nsURI="org.eclipse.emf.texo.test.model.samples.sport.club"
nsPrefix="club">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="basePackage" value="org.eclipse.emf.texo.test.model.samples.sport"/>
</eAnnotations>
<eClassifiers xsi:type="ecore:EClass" name="Club" eSuperTypes="org.eclipse.emf.texo.test.model.samples.sport.society#//Society">
<eStructuralFeatures xsi:type="ecore:EReference" name="teams" upperBound="-1"
eType="#//Team" containment="true" resolveProxies="false">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="teams"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Team" eSuperTypes="http://www.eclipse.org/emf/texo/test/model/base/identifiable#//Identifiable">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EReference" name="members" upperBound="-1"
eType="#//Member">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="members"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Member" eSuperTypes="http://www.eclipse.org/emf/texo/test/model/base/identifiable#//Identifiable">
<eStructuralFeatures xsi:type="ecore:EAttribute" name="name" unique="false" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="name"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="lastName" unique="false"
eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EString">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="lastName"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="age" unique="false" eType="ecore:EDataType platform:/resource/org.eclipse.emf.ecore/model/Ecore.ecore#//EInt">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="age"/>
</eAnnotations>
</eStructuralFeatures>
<eStructuralFeatures xsi:type="ecore:EAttribute" name="gender" unique="false"
eType="#//Gender">
<eAnnotations source="org.eclipse.emf.texo">
<details key="java.member" value="gender"/>
</eAnnotations>
</eStructuralFeatures>
</eClassifiers>
<eClassifiers xsi:type="ecore:EEnum" name="Gender">
<eLiterals name="male"/>
<eLiterals name="female"/>
</eClassifiers>
</ecore:EPackage>
|