Skip to main content
summaryrefslogtreecommitdiffstats
blob: d90957f8950a6e62fb668a08b467be5f0a2ee832 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
Copyright (c) 2011, 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.ecore.generated_package">
      <package
            uri="http://www.eclipse.org/emf/compare/uml2/2.0"
            class="org.eclipse.emf.compare.uml2.internal.UMLComparePackage"
            genModel="model/uml2compare.genmodel"/>
   </extension>
   <extension
         point="org.eclipse.emf.compare.rcp.postProcessor">
      <processor
            class="org.eclipse.emf.compare.uml2.internal.postprocessor.UMLPostProcessor"
            ordinal="20">
         <nsURI
               value="http://www.eclipse.org/uml2/\d.0.0/UML">
         </nsURI>
      </processor>
   </extension>
   <extension
         point="org.eclipse.emf.compare.rcp.merger">
      <merger
            class="org.eclipse.emf.compare.uml2.internal.merge.UMLMerger"
            ranking="20">
      </merger>
   </extension>

</plugin>

Back to the top