Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: eaca51fc914ede336ee050bb1f60b19d8d8d1168 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
 <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            adaptable="false"
            id="org.eclipse.emf.cdo.dawn.codegen.generate"
            nameFilter="*.dawngenmodel"
            objectClass="org.eclipse.core.resources.IFile">
         <action
               class="org.eclipse.emf.cdo.dawn.codegen.actions.GenerateClientCodeAction"
               id="org.eclipse.emf.cdo.dawn.codegen.generateClientaction"
               label="Generate Dawn GMF Fragment">
         </action>
      </objectContribution>
      <objectContribution
            adaptable="false"
            id="org.eclipse.emf.cdo.dawn.codegen.generate.client"
            nameFilter="*.gmfgen"
            objectClass="org.eclipse.core.resources.IFile">
         <action
               class="org.eclipse.emf.cdo.dawn.codegen.actions.GenerateDawnGenModelAction"
               id="org.eclipse.emf.cdo.dawn.codegen.dawngenmodelaction"
               label="Generate Dawn GenModel">
         </action>
      </objectContribution>
   </extension>

</plugin>

Back to the top