Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4dfd9dc2db1d246109cf493d1071f93bda86d9c2 (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) 2015 Christian W. Damus and others.
 
 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:
   Christian W. Damus - Initial API and implementation
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
      <!-- @generated test-exceptions -->
      <category
            id="org.eclipse.emf.ecore.Wizard.category.ID"
            name="%_UI_Wizard_category"/>
      <wizard
            id="org.eclipse.papyrus.tests.framework.exceptions.presentation.ExceptionsModelWizardID"
            name="%_UI_ExceptionsModelWizard_label"
            class="org.eclipse.papyrus.tests.framework.exceptions.presentation.ExceptionsModelWizard"
            category="org.eclipse.emf.ecore.Wizard.category.ID"
            icon="icons/full/obj16/ExceptionsModelFile.gif">
         <description>%_UI_ExceptionsModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <!-- @generated test-exceptions -->
      <editor
            id="org.eclipse.papyrus.tests.framework.exceptions.presentation.ExceptionsEditorID"
            name="%_UI_ExceptionsEditor_label"
            icon="icons/full/obj16/ExceptionsModelFile.gif"
            extensions="testexceptions"
            class="org.eclipse.papyrus.tests.framework.exceptions.presentation.ExceptionsEditor"
            contributorClass="org.eclipse.papyrus.tests.framework.exceptions.presentation.ExceptionsActionBarContributor">
      </editor>
   </extension>

</plugin>

Back to the top