Skip to main content
summaryrefslogtreecommitdiffstats
blob: b89d0c4b450593bd15a3a3107d7fde76523e3900 (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
<?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="match"
    nsURI="http://www.eclipse.org/emf/compare/match/1.0" nsPrefix="match">
  <eClassifiers xsi:type="ecore:EClass" name="MatchModel">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="leftModel" ordered="false"
        unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="rightModel" ordered="false"
        unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="originModel" ordered="false"
        unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="matchedElements" upperBound="-1"
        eType="#//MatchElement" containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="unMatchedElements" upperBound="-1"
        eType="#//UnMatchElement" containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="MatchElement" abstract="true">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="similarity" ordered="false"
        unique="false" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="subMatchElements" upperBound="-1"
        eType="#//MatchElement" containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Match2Elements" eSuperTypes="#//MatchElement">
    <eStructuralFeatures xsi:type="ecore:EReference" name="leftElement" ordered="false"
        lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="rightElement" ordered="false"
        lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Match3Element" eSuperTypes="#//MatchElement">
    <eStructuralFeatures xsi:type="ecore:EReference" name="originElement" ordered="false"
        lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="UnMatchElement">
    <eStructuralFeatures xsi:type="ecore:EReference" name="element" ordered="false"
        lowerBound="1" eType="ecore:EClass http://www.eclipse.org/emf/2002/Ecore#//EObject"/>
  </eClassifiers>
</ecore:EPackage>

Back to the top