Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4902bd49155e8e73b04b2bfbbfe450ddcd917dbe (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
  
  <extension
         point="org.eclipse.emf.compare.match.engine">
      <matchengine
            engineClass="org.eclipse.papyrus.uml.compare.match.PapyrusMatchEngine"
            fileExtension="uml"
            label="Papyrus Matching Engine"
            priority="highest"/>
   </extension>
   
  <extension
         point="org.eclipse.emf.compare.diff.engine">
      <diffengine
            engineClass="org.eclipse.papyrus.uml.compare.diff.PapyrusDiffEngine"
            priority="highest"
            icon="icons/DiffEngine.gif"
            label="Papyrus Differencing Engine"/>
   </extension>
   
</plugin>

Back to the top