Skip to main content
summaryrefslogtreecommitdiffstats
blob: 330ab7b73bc9b3573fd75cd27dcae5e857c46ac0 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
 Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others.
 All rights reserved. This program and the accompanying materials
 are made available under the terms of the Eclipse Public License v1.0
 which accompanies this distribution, and is available at
 http://www.eclipse.org/legal/epl-v10.html
 
 Contributors:
    Martin Fluegge - initial API and implementation
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
      <wizard
            id="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.dawnGmfGenmodel.presentation.DawnGmfGenmodelModelWizardID"
            name="%_UI_DawnGmfGenmodelModelWizard_label"
            class="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.dawnGmfGenmodel.presentation.DawnGmfGenmodelModelWizard"
            category="org.eclipse.emf.cdo.dawn.ui.category.dawn"
            icon="icons/full/obj16/dawn_gemodel_gmf_16x16.gif">
         <description>%_UI_DawnGmfGenmodelModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.dawnGmfGenmodel.presentation.DawnGmfGenmodelEditorID"
            name="%_UI_DawnGmfGenmodelEditor_label"
            icon="icons/full/obj16/dawn_gemodel_gmf_16x16.gif"
            extensions="dawngenmodel_gmf"
            class="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.dawnGmfGenmodel.presentation.DawnGmfGenmodelEditor"
            contributorClass="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.dawnGmfGenmodel.presentation.DawnGmfGenmodelActionBarContributor">
      </editor>
   </extension>
   
   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            adaptable="false"
            id="org.eclipse.emf.cdo.dawn.codegen.generate"
            nameFilter="*.dawngenmodel_gmf"
            objectClass="org.eclipse.core.resources.IFile">
        <action
               class="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.ui.actions.GenerateGMFFragmentAction"
               id="org.eclipse.emf.cdo.dawn.codegen.generateClientaction"
               label="%generate.gmf.label">
         </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.dawngenmodel.gmf.ui.actions.GenerateDawnGenModelGMFAction"
               id="org.eclipse.emf.cdo.dawn.codegen.dawngenmodelaction"
               label="%generate.genmodel.label">
         </action>
      </objectContribution>
   </extension>
   <extension
         point="org.eclipse.emf.cdo.dawn.genmodel.ui.editors">
      <editor
            editor="org.eclipse.emf.cdo.dawn.codegen.dawngenmodel.gmf.dawnGmfGenmodel.presentation.DawnGmfGenmodelEditor"
            file_extension="_gmf">
      </editor>
   </extension>
   

</plugin>

Back to the top