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

<!--
 <copyright>
 </copyright>

 $Id$
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
      <category
            id="org.eclipse.emf.ecore.Wizard.category.ID"
            name="%_UI_Wizard_category"/>
      <wizard
            id="org.eclipse.papyrus.infra.extendedtypes.presentation.ExtendedtypesModelWizardID"
            name="%_UI_ExtendedtypesModelWizard_label"
            class="org.eclipse.papyrus.infra.extendedtypes.presentation.ExtendedtypesModelWizard"
            category="org.eclipse.emf.ecore.Wizard.category.ID"
            icon="icons/full/obj16/ExtendedtypesModelFile.gif">
         <description>%_UI_ExtendedtypesModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.papyrus.infra.extendedtypes.presentation.ExtendedtypesEditorID"
            name="%_UI_ExtendedtypesEditor_label"
            icon="icons/full/obj16/ExtendedtypesModelFile.gif"
            extensions="extendedtypes"
            class="org.eclipse.papyrus.infra.extendedtypes.presentation.ExtendedtypesEditor"
            contributorClass="org.eclipse.papyrus.infra.extendedtypes.presentation.ExtendedtypesActionBarContributor">
      </editor>
   </extension>
</plugin>

Back to the top