Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3458372c790d3d3c9d41bbae9f5009a2b7adc847 (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
<?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 2.0
 which accompanies this distribution, and is available at
 https://www.eclipse.org/legal/epl-2.0/

 SPDX-License-Identifier: EPL-2.0
  
 Contributors:
 	CEA LIST - Initial API and implementation
 
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
      <!-- @generated NOT elementCreationMenuModel -->
      <wizard
            id="org.eclipse.papyrus.infra.newchild.elementcreationmenumodel.presentation.ElementCreationMenuModelModelWizardID"
            name="%_UI_ElementCreationMenuModelModelWizard_label"
            class="org.eclipse.papyrus.infra.newchild.elementcreationmenumodel.presentation.ElementCreationMenuModelModelWizard"
            category="org.eclipse.papyrus.wizards.category/org.eclipse.papyrus.wizards.custo.category/org.eclipse.papyrus.wizards.custo.modelexplorer.category"
            icon="icons/full/obj16/ElementCreationMenuModelModelFile.gif">
         <description>%_UI_ElementCreationMenuModelModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <!-- @generated elementCreationMenuModel -->
      <editor
            id="org.eclipse.papyrus.infra.newchild.elementcreationmenumodel.presentation.ElementCreationMenuModelEditorID"
            name="%_UI_ElementCreationMenuModelEditor_label"
            icon="icons/full/obj16/ElementCreationMenuModelModelFile.gif"
            extensions="creationmenumodel"
            class="org.eclipse.papyrus.infra.newchild.elementcreationmenumodel.presentation.ElementCreationMenuModelEditor"
            contributorClass="org.eclipse.papyrus.infra.newchild.elementcreationmenumodel.presentation.ElementCreationMenuModelActionBarContributor">
      </editor>
   </extension>
</plugin>

Back to the top