Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c829b48aa2c9975a94062185f4104145c50fed9b (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 NOT ElementTypesConfigurations -->
      <wizard
            id="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsModelWizardID"
            name="%_UI_ElementTypesConfigurationsModelWizard_label"
            class="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsModelWizard"
            category="org.eclipse.papyrus.wizards.category/org.eclipse.papyrus.wizards.addons.category"
            icon="icons/full/obj16/ElementTypesConfigurationsModelFile.gif">
         <description>%_UI_ElementTypesConfigurationsModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <!-- @generated ElementTypesConfigurations -->
      <editor
            id="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsEditorID"
            name="%_UI_ElementTypesConfigurationsEditor_label"
            icon="icons/full/obj16/ElementTypesConfigurationsModelFile.gif"
            extensions="elementtypesconfigurations"
            class="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsEditor"
            contributorClass="org.eclipse.papyrus.infra.types.presentation.ElementTypesConfigurationsActionBarContributor">
         <contentTypeBinding contentTypeId="org.eclipse.papyrus.infra.types"/>
      </editor>
   </extension>
</plugin>

Back to the top