Skip to main content
summaryrefslogtreecommitdiffstats
blob: 745abf2e782d2ece3909dc1ed61e54c74e7e8f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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="merge"
    nsURI="http://www.eclipse.org/emf/compare/tests/merge" nsPrefix="merge">
  <eClassifiers xsi:type="ecore:EClass" name="Node">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"
        iD="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="containmentRef1" upperBound="-1"
        eType="#//Node" containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="NodeMultipleContainment" eSuperTypes="#//Node">
    <eStructuralFeatures xsi:type="ecore:EReference" name="containmentRef2" upperBound="-1"
        eType="#//Node" containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="NodeSingleValueContainment" eSuperTypes="#//Node">
    <eStructuralFeatures xsi:type="ecore:EReference" name="singleValueContainment"
        eType="#//Node" containment="true"/>
  </eClassifiers>
</ecore:EPackage>

Back to the top