Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5cdef74b176332e0b773315178dbcea01d0c50d5 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension-point id="newWizards" name="%extension-point.newtarget.name" schema="schema/newWizards.exsd"/>
   <extension-point id="viewers" name="%extension-point.treeviewer.name" schema="schema/viewers.exsd"/>

<!-- New target wizard contributions -->

   <extension point="org.eclipse.tcf.te.ui.newWizards">
      <category
            id="org.eclipse.tcf.te.ui.newWizards.category.general"
            name="%NewWizards.category.name">
      </category>
   </extension>

<!-- Command contributions -->
   <extension point="org.eclipse.ui.commands">
      <category
            id="org.eclipse.tcf.te.ui.commands.category"
            name="%Command.category.name">
      </category>

      <command
            categoryId="org.eclipse.tcf.te.ui.commands.category"
            defaultHandler="org.eclipse.tcf.te.ui.wizards.newWizard.NewWizardCommandHandler"
            description="%Command.newWizards.description"
            helpContextId="org.eclipse.tcf.te.ui.command_NewWizards"
            id="org.eclipse.tcf.te.ui.command.newWizards"
            name="%Command.newWizards.name">
      </command>
   </extension>
   
<!-- Command image contributions -->   
   <extension point="org.eclipse.ui.commandImages">
      <image
            commandId="org.eclipse.tcf.te.ui.command.newWizards"
            disabledIcon="icons/dlcl16/newtarget_wiz.gif"
            icon="icons/elcl16/newtarget_wiz.gif">
      </image>
   </extension>
   
<!-- Context and binding contributions -->
   <extension point="org.eclipse.ui.contexts">
      <context
            description="%context.targetexplorer.description"
            id="org.eclipse.tcf.te.ui.views.TargetExplorer"
            name="%context.targetexplorer.name"
            parentId="org.eclipse.ui.contexts.window">
      </context>
   </extension>

   <extension point="org.eclipse.ui.bindings">
      <key
            commandId="org.eclipse.tcf.te.ui.command.newWizards"
            contextId="org.eclipse.tcf.te.ui.views.TargetExplorer"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M1+N">
      </key>
   </extension>

<!-- Status handler contributions -->
   <extension point="org.eclipse.tcf.te.runtime.statushandler.handlers">
      <handler
            class="org.eclipse.tcf.te.ui.statushandler.DefaultStatusHandler"
            id="org.eclipse.tcf.te.statushandler.default"
            label="%DefaultStatusHandler.label">
      </handler>
   </extension>

<!-- Executor service contributions -->
   <extension point="org.eclipse.tcf.te.runtime.concurrent.executorServices">
      <executorService
            id="org.eclipse.tcf.te.ui.executors.SWTDisplay"
            label="Eclipse Platform Display Executor"
            class="org.eclipse.tcf.te.ui.internal.executors.SWTDisplayExecutor">
      </executorService>
   </extension>
   
<!-- Executor utility delegate contributions -->
   <extension point="org.eclipse.tcf.te.runtime.concurrent.executorUtilDelegates">
      <executorUtilDelegate
      		class="org.eclipse.tcf.te.ui.internal.executors.SWTDisplayExecutorUtilDelegate"
            id="org.eclipse.tcf.te.ui.executors.delegate.SWTDisplay"
            label="%SWTDisplayExecutorUtilDelegate.label">
      </executorUtilDelegate>
   </extension>
   
</plugin>

Back to the top