Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5aa1dc423143ce225ab780091516f2435125b4fa (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
Copyright (c) 2011 Mia-Software.

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:
     Gregoire Dupe (Mia-Software) - Bug 361794 - [Restructuring] EMF Facet customization meta-model
     Gregoire Dupe (Mia-Software) - Bug 369987 - [Restructuring][Table] Switch to the new customization and facet framework
     Gregoire Dupé (Mia-Software) - Bug 418885 - ETypedElementSwitchQuery implemented using a deprecated query evaluator extension point
-->
<plugin>
   <extension
         point="org.eclipse.papyrus.emf.facet.util.emf.core.catalogmanager">
      <catalog
            class="org.eclipse.papyrus.emf.facet.custom.core.internal.CustomizationCatalogManager">
      </catalog>
   </extension>
   
    <extension
         point="org.eclipse.papyrus.emf.facet.util.emf.core.catalogmanager">
      <catalog
            class="org.eclipse.papyrus.emf.facet.custom.core.internal.CustomizationPropertiesCatalogManager">
      </catalog>
   </extension>
   
    <extension point="org.eclipse.papyrus.emf.facet.efacet.core.derivedTypedElementImplementationRegistration">
      <derivedTypedElementImplementationRegistration
            class="org.eclipse.papyrus.emf.facet.custom.core.internal.query.ETypedElementSwitchQueryImplementationFactory">
      </derivedTypedElementImplementationRegistration>
	</extension>

   <extension point="org.eclipse.papyrus.emf.facet.efacet.core.queryImplementationRegistration">
      <queryImplementationRegistration class="org.eclipse.papyrus.emf.facet.custom.core.internal.query.SwitchQueryImplementationFactory"/>
   </extension>
</plugin>

Back to the top