Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7cad83bb5bad0c628aac98a5ddba1bc2b6ca5e80 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
  <extension
         point="org.eclipse.emf.ecore.uri_mapping">
 
      <mapping
            source="pathmap://DEVELOPER_PROFILES/"
            target="platform:/plugin/org.eclipse.papyrus.uml.developer.mde/resource/">
      </mapping>
   </extension>
   
   <extension
         point="org.eclipse.papyrus.uml.extensionpoints.UMLProfile">
      <profile
            description="Developer Process Profile"
            name="Developer Process Profil"
            path="pathmap://DEVELOPER_PROFILES/developerprocess.profile.uml"
            provider="Eclipse Modeling Project">
      </profile>
      <profile
            description="Document Profile"
            name="Document  Profil"
            path="pathmap://DEVELOPER_PROFILES/Document.profile.uml"
            provider="Eclipse Modeling Project">
      </profile>
   </extension>
   <extension
         point="org.eclipse.papyrus.uml.diagram.wizards.templates">
      <template
            di_file="resource/developermodel.di"
            file="resource/developermodel.uml"
            id="org.eclipse.papyrus.uml.developer.idm.template"
            language="uml"
            name="An empty developer model"
            notation_file="resource/developermodel.notation">
      </template>
      </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.views.modelexplorer.modelexplorer.popup">
         <menu
               id="developer.idm"
               label="Developer">
            <visibleWhen
                  checkEnabled="true">
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </visibleWhen>
            <command
                  commandId="org.eclipse.papyrus.uml.developper.mde.handler.GetHTMLTextHandler"
                  id="org.eclipse.papyrus.uml.developper.mde.handler.GetHTMLTextMenu"
                  label="generate HTML page"
                  style="push">
               <visibleWhen
                     checkEnabled="true">
               </visibleWhen>
            </command>
            <command
                  commandId="org.eclipse.papyrus.uml.developper.mde.handler.GetWikiTextHandler"
                  id="org.eclipse.papyrus.uml.developper.mde.handler.GetWikiTextMenu"
                  label="generate wiki page"
                  style="push">
               <visibleWhen
                     checkEnabled="true">
               </visibleWhen>
            </command>
         </menu>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            defaultHandler="org.eclipse.papyrus.uml.developper.mde.handler.GetHTMLTextHandler"
            id="org.eclipse.papyrus.uml.developper.mde.handler.GetHTMLTextHandler"
            name="generate HTML page">
      </command>
      <command
            defaultHandler="org.eclipse.papyrus.uml.developper.mde.handler.GetWikiTextHandler"
            id="org.eclipse.papyrus.uml.developper.mde.handler.GetWikiTextHandler"
            name="generate wiki page">
      </command>
   </extension>
</plugin>

Back to the top