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

<!--
 Copyright (c) 2014 CEA LIST.
  
 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:
  CEA LIST - Initial API and implementation
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
      <!-- @generated DG -->
      <category
            id="org.eclipse.emf.ecore.Wizard.category.ID"
            name="%_UI_Wizard_category"/>
      <wizard
            id="org.eclipse.papyrus.dd.dg.editor.DGModelWizard"
            name="%_UI_DGModelWizard_label"
            class="org.eclipse.papyrus.dd.dg.editor.DGModelWizard"
            category="org.eclipse.emf.ecore.Wizard.category.ID"
            icon="icons/full/obj16/DGModelFile.gif">
         <description>%_UI_DGModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <!-- @generated DG -->
      <editor
            id="org.eclipse.papyrus.dd.dg.editor.DGEditor"
            name="%_UI_DGEditor_label"
            icon="icons/full/obj16/DGModelFile.gif"
            extensions="dg"
            class="org.eclipse.papyrus.dd.dg.editor.DGEditor"
            contributorClass="org.eclipse.papyrus.dd.dg.editor.DGActionBarContributor">
      </editor>
   </extension>

</plugin>

Back to the top