Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 56bc6713d41a1135369fb7ab601bb9b606ee76c5 (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
<?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.texteditor.cdt.modelresource.TextEditorModelSharedResource">
      </model>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            description="Open a CDT Editor"
            defaultHandler="org.eclipse.papyrus.texteditor.cdt.handler.PapyrusCDTEditorHandler"
            id="org.eclipse.papyrus.exteditor.cdt.openeditor"
            name="Open a CDT Editor">
      </command>
   </extension>
   <extension
         point="org.eclipse.papyrus.infra.core.papyrusDiagram">
      <editorDiagram
            factoryClass="org.eclipse.papyrus.texteditor.cdt.factory.PapyrusCDTEditorFactory"
            icon="icons/texteditor.gif">
      </editorDiagram>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.qompass.popup?after=codegen">
         <command
               commandId="org.eclipse.papyrus.exteditor.cdt.openeditor"
               id="org.eclipse.papyrus.exteditor.cdt.open"
               icon="icons/texteditor.gif"
               style="push">
            <visibleWhen
                  checkEnabled="true">
            </visibleWhen>
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.papyrus.infra.core.modelListener">
      <listener
            name="org.eclipse.papyrus.exteditor.cdt.listener.ModelListener"
            realization="org.eclipse.papyrus.texteditor.cdt.listener.ModelListener">
      </listener>
   </extension>
</plugin>

Back to the top