Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a8c24eff582562680e18a2115ce5a11ffc8fa803 (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
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
 Copyright (c) 2013 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 ExtendedTypes -->
      <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">
      <!-- @generated InvariantSemanticTypeConfiguration -->
      <editor
            id="org.eclipse.papyrus.infra.extendedtypes.invariantsemantictypeconfiguration.presentation.InvariantSemanticTypeConfigurationEditorID"
            name="%_UI_InvariantSemanticTypeConfigurationEditor_label"
            icon="icons/full/obj16/InvariantSemanticTypeConfigurationModelFile.gif"
            extensions="invariantsemantictypeconfiguration"
            class="org.eclipse.papyrus.infra.extendedtypes.invariantsemantictypeconfiguration.presentation.InvariantSemanticTypeConfigurationEditor"
            contributorClass="org.eclipse.papyrus.infra.extendedtypes.invariantsemantictypeconfiguration.presentation.InvariantSemanticTypeConfigurationActionBarContributor">
      </editor>
   </extension>


   <extension point="org.eclipse.ui.editors">
      <!-- @generated NOT Custom ExtendedTypes -->
      <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.CustomExtendedtypesEditor"
            contributorClass="org.eclipse.papyrus.infra.extendedtypes.presentation.ExtendedtypesActionBarContributor">
      </editor>
   </extension>

</plugin>

Back to the top