Skip to main content
summaryrefslogtreecommitdiffstats
blob: e97242df9a7b0825ee45a97f1c51b95c49f5ef98 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.commands">
      <command
            defaultHandler="org.eclipse.papyrus.dev.infra.emf.export.handler.EMFSaveAsHandler"
            description="Allow to do a &quot;Save As&quot; of a part of a model"
            id="org.eclipse.papyrus.dev.infra.emf.export.save.as.command"
            name="EMF Save As">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.ui.popup.any">
         <command
               commandId="org.eclipse.papyrus.dev.infra.emf.export.save.as.command"
               label="&quot;Save As&quot; a part of the model"
               style="push"
               tooltip="&quot;Save As&quot; a part of the model">
         </command>
      </menuContribution>
   </extension>

</plugin>

Back to the top