Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4f153a61afe0fa6b2531e01c0a589715a18410d8 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
  Copyright (c) 2007, 2008 THALES GLOBAL SERVICES
  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/sirius/table/1.1.0"
            class="org.eclipse.sirius.table.metamodel.table.TablePackage"
            genModel="model/table.genmodel"/>
   </extension>

   <extension point="org.eclipse.emf.ecore.generated_package">
      <package
            uri="http://www.eclipse.org/sirius/table/description/1.1.0"
            class="org.eclipse.sirius.table.metamodel.table.description.DescriptionPackage"
            genModel="model/table.genmodel"/>
   </extension>
   
    <extension
         point="org.eclipse.sirius.dialect">
      <dialect
            class="org.eclipse.sirius.table.business.internal.dialect.TableDialect">
      </dialect>
   </extension>
    <extension
          point="org.eclipse.sirius.mmdescriptor">
       <descriptorprovider
             class="org.eclipse.sirius.table.business.internal.dialect.TableMetamodelsProvider">
       </descriptorprovider>
    </extension>
    <extension
          point="org.eclipse.sirius.migrationParticipant">
       <participant
             class="org.eclipse.sirius.table.business.internal.migration.description.InitializeCreationToolElementsToSelectExpressionParticipant"
             kind="VSM">
       </participant>
    </extension>
   
</plugin>

Back to the top