Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c0e4f5d6e0da7834c3b167dacdcc23fd64883ccf (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.papyrus.infra.core.model">
      <model
            classname="org.eclipse.papyrus.example.uml.comment.editor.newresource.modelresource.TextEditorModelCommentResource">
      </model>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            description="Open a Comment Editor (Comment Resource)"
            id="org.eclipse.papyrus.example.uml.comment.editor.command.newresource"
            name="Open a Comment Editor (Comment Resource)">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.papyrus.example.uml.comment.editor.newresource.handler.CommentEditorHandler"
            commandId="org.eclipse.papyrus.example.uml.comment.editor.command.newresource">
         <activeWhen>
            <and>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.infra.core.papyrusEditor">
                  </equals>
               </with>
            </and>
         </activeWhen>
      </handler>
   </extension>
   <extension
         point="org.eclipse.papyrus.infra.ui.papyrusDiagram">
      <editorDiagram
            factoryClass="org.eclipse.papyrus.example.uml.comment.editor.newresource.factory.CommentEditorFactory"
            icon="icons/texteditorv2.bmp">
      </editorDiagram>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.views.modelexplorer.modelexplorer.popup">
         <command
               commandId="org.eclipse.papyrus.example.uml.comment.editor.command.newresource"
               icon="icons/texteditorv2.bmp"
               style="push">
            <visibleWhen
                  checkEnabled="false">
               <and>
                  <with
                        variable="activeEditorId">
                     <equals
                           value="org.eclipse.papyrus.infra.core.papyrusEditor">
                     </equals>
                  </with>
               </and>
            </visibleWhen>
         </command>
      </menuContribution>
   </extension>


</plugin>

Back to the top