Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 87627072a2a875d6d0904b1f3eda961f72bfb181 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
  Copyright (c) 2014, 2018 Eike Stepper (Loehne, Germany) and others.
  All rights reserved. This program and the accompanying materials
  are made available under the terms of the Eclipse Public License v2.0
  which accompanies this distribution, and is available at
  http://www.eclipse.org/legal/epl-v20.html

  Contributors:
    Eike Stepper - initial API and implementation
-->

<plugin>

   <extension point="org.eclipse.ui.handlers">
      <handler
            commandId="org.eclipse.oomph.p2.ui.SearchRequirements">
         <class
               class="org.eclipse.oomph.p2.internal.ui.SearchRequirementsHandler">
         </class>
         <activeWhen>
             <iterate
                   ifEmpty="false">
                <adapt
                      type="org.eclipse.oomph.targlets.Targlet">
                </adapt>
             </iterate>
         </activeWhen>
      </handler>
   </extension>

   <extension point="org.eclipse.ui.newWizards">
      <!-- @generated targlets not -->
      <category
            id="org.eclipse.emf.ecore.Wizard.category.ID"
            name="%_UI_Wizard_category"/>
      <wizard
            id="org.eclipse.oomph.targlets.presentation.TargletModelWizardID"
            name="%_UI_TargletModelWizard_label"
            class="org.eclipse.oomph.targlets.presentation.TargletModelWizard"
            category="org.eclipse.oomph"
            icon="icons/full/obj16/TargletModelFile.gif">
         <description>%_UI_TargletModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
      <wizard
            id="org.eclipse.oomph.targlets.presentation.CDefModelWizardID"
            name="%_UI_CDef_ModelName"
            class="org.eclipse.oomph.targlets.presentation.ComponentModelWizard$CDef"
            category="org.eclipse.oomph"
            icon="icons/full/obj16/cdef_file.gif">
         <description>%_UI_CDef_ModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IProject"/>
      </wizard>
      <wizard
            id="org.eclipse.oomph.targlets.presentation.CExtModelWizardID"
            name="%_UI_CExt_ModelName"
            class="org.eclipse.oomph.targlets.presentation.ComponentModelWizard$CExt"
            category="org.eclipse.oomph"
            icon="icons/full/obj16/cext_file.gif">
         <description>%_UI_CExt_ModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IProject"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <!-- @generated targlets not -->
      <editor
            id="org.eclipse.oomph.targlets.presentation.TargletEditorID"
            name="%_UI_TargletEditor_label"
            icon="icons/full/obj16/TargletModelFile.gif"
            extensions="targlet"
            class="org.eclipse.oomph.targlets.presentation.TargletEditor"
            contributorClass="org.eclipse.oomph.targlets.presentation.TargletActionBarContributor">
         <contentTypeBinding
               contentTypeId="org.eclipse.oomph.targlets.targlet">
         </contentTypeBinding>
      </editor>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.oomph.targlets.presentation.CDefEditorID"
            name="%_UI_CDef_Editor_label"
            icon="icons/full/obj16/cdef_file.gif"
            extensions="def"
            class="org.eclipse.oomph.targlets.presentation.TargletEditor"
            contributorClass="org.eclipse.oomph.targlets.presentation.TargletActionBarContributor">
         <contentTypeBinding
               contentTypeId="org.eclipse.oomph.targlets.def">
         </contentTypeBinding>
      </editor>
      <editor
            id="org.eclipse.oomph.targlets.presentation.CExtEditorID"
            name="%_UI_CExt_Editor_label"
            icon="icons/full/obj16/cext_file.gif"
            extensions="ext"
            class="org.eclipse.oomph.targlets.presentation.TargletEditor"
            contributorClass="org.eclipse.oomph.targlets.presentation.TargletActionBarContributor">
         <contentTypeBinding
               contentTypeId="org.eclipse.oomph.targlets.ext">
         </contentTypeBinding>
      </editor>
   </extension>

</plugin>

Back to the top