Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1136ae09c39dfc221627d17465f74c5ff2c9d5fa (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
108
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
  Copyright (c) 2014-2017 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 id="questionnaire" name="Questionnaire" schema="schema/questionnaire.exsd"/>
   <extension-point id="preferencePolicies" name="Preference Policies" schema="schema/preferencePolicies.exsd"/>

   <extension
         point="org.eclipse.oomph.ui.deferredEarlyStart">
      <startup class="org.eclipse.oomph.setup.ui.EarlyStartup"/>
   </extension>

   <extension
         point="org.eclipse.ui.preferencePages">
      <page
            category="org.eclipse.oomph.ui.preferences.OomphPreferencePage"
            id="org.eclipse.oomph.setup.SetupPreferencePage"
            class="org.eclipse.oomph.setup.ui.SetupPreferencePage"
            name="Setup Tasks">
      </page>
      <page
            category="org.eclipse.oomph.setup.SetupPreferencePage"
            id="org.eclipse.oomph.setup.RecorderPreferencePage"
            class="org.eclipse.oomph.setup.ui.recorder.RecorderPreferencePage"
            name="Preference Recorder">
      </page>
      <page
            category="org.eclipse.oomph.setup.SetupPreferencePage"
            id="org.eclipse.oomph.setup.SynchronizerPreferencePage"
            class="org.eclipse.oomph.setup.ui.synchronizer.SynchronizerPreferencePage"
            name="Preference Synchronizer">
      </page>
   </extension>

   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            id="org.eclipse.oomph.setup.contribution1"
            objectClass="org.eclipse.oomph.setup.SetupTask">
         <action
               class="org.eclipse.oomph.setup.ui.actions.ToggleDisabledAction"
               enablesFor="multiple"
               id="org.eclipse.oomph.setup.ToggleDisabledAction"
               label="Disabled"
               state="false"
               style="toggle"
               tooltip="Changes the enablement of the task">
         </action>
      </objectContribution>
   </extension>

   <extension
         point="org.eclipse.ui.importWizards">
      <wizard
            category="org.eclipse.oomph.importWizards"
            class="org.eclipse.oomph.setup.ui.wizards.SetupWizard$Importer"
            icon="icons/oomph16.png"
            id="org.eclipse.oomph.setup.ui.ImportWizard"
            name="Projects into Workspace">
         <description>
            Import projects from the Oomph catalogs into the workspace.
         </description>
      </wizard>
   </extension>

   <extension
         point="org.eclipse.core.expressions.propertyTesters">
      <propertyTester
            class="org.eclipse.oomph.setup.ui.SetupPropertyTester"
            id="org.eclipse.oomph.setup.ui.propertyTester"
            namespace="org.eclipse.oomph.setup.ui"
            properties="starting,performing,handling,showToolBarContributions,syncEnabled"
            type="java.lang.Object">
      </propertyTester>
   </extension>

   <extension
         point="org.eclipse.ui.commands">
      <command
            categoryId="org.eclipse.oomph.setup.category"
            defaultHandler="org.eclipse.oomph.setup.ui.actions.LaunchQuestionnaireHandler"
            description="Review the IDE&apos;s most fiercely contested preferences "
            id="org.eclipse.oomph.setup.ui.questionnaire"
            name="Configuration Questionnaire">
      </command>
   </extension>
   <extension
         point="org.eclipse.userstorage.oauth.clients">
      <client
            id="Q9TBg1mthjy0wSKVgrXfiBU4Kqz"
            authURI="https://accounts.eclipse.org/"
            icon="icons/oomph16.png"
            name="Oomph">
      </client>
   </extension>

</plugin>

Back to the top