Skip to main content
summaryrefslogtreecommitdiffstats
blob: 22448852a50b1cf6968d9b000712fccfd602ff32 (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
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<!--
Copyright (c) 2006, 2012 Obeo.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html

Contributors:
    Obeo - initial API and implementation
-->
<plugin>

   <extension
         point="org.eclipse.emf.compare.match.engine">
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.unit.match.engine.mock.AEngine"
            fileExtension="a"
            priority="low"
            label="AEngine"/>
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.unit.match.engine.mock.BEngine"
            fileExtension="b"
            priority="low"
            label="BEngine"/>
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.unit.match.engine.mock.CHighEngine"
            fileExtension="c"
            priority="high"
            label="CHighEngine"/>
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.unit.match.engine.mock.CLowEngine"
            fileExtension="c"
            priority="low"
            label="CLowEngine"/>
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.unit.match.engine.mock.DEngine"
            label="DEngine"
            namespace="http://www.eclipse.org/emf/2002/GenModel"
            priority="lowest">
      </matchengine>
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.unit.match.engine.mock.EEngine"
            label="EEngine"
            namespacePattern=".*2002/GenModel"
            priority="lowest">
      </matchengine>
      <matchengine
            engineClass="org.eclipse.emf.compare.tests.match.NodeMatchEngine"
            fileExtension="nodes"
            label="Node Match Engine">
      </matchengine>
            <!--
      <matchengine
            engineClass="org.eclipse.emf.compare.match.statistic.test.match.engines.GenericHighestEngine"
            fileExtension="*"
            priority="highest"/>
            -->
   </extension>
   
   <extension point="org.eclipse.emf.ecore.generated_package">
    <package 
       uri = "http://www.eclipse.org/emf/compare/tests/merge" 
       class = "org.eclipse.emf.compare.tests.merge.MergePackage"
       genModel = "model/merge.genmodel" /> 
  </extension>
</plugin>

Back to the top