Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4fd3f0a4af8f9517f51d14858dd716af1b9bc24e (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension-point id="newWizards" name="newWizards" schema="schema/newWizards.exsd"/>

   <extension
         point="org.eclipse.ui.views">
      <view
            category="org.eclipse.mylyn.ui"
            class="org.eclipse.mylyn.internal.commons.identity.ui.PeopleView"
            icon="icons/obj16/people.gif"
            id="org.eclipse.mylyn.commons.ui.identity.navigator.People"
            name="People">
      </view>
   </extension>
   <extension
         point="org.eclipse.ui.navigator.viewer">
      <viewerContentBinding
            viewerId="org.eclipse.mylyn.commons.ui.identity.navigator.People">
         <includes>
            <contentExtension
                  pattern="org.eclipse.ui.navigator.resources.linkHelper">
            </contentExtension>
         </includes>
      </viewerContentBinding>
      <viewerContentBinding
            viewerId="org.eclipse.mylyn.commons.ui.identity.navigator.People">
         <includes>
            <contentExtension
                  pattern="org.eclipse.mylyn.commons.ui.identity.navigator.*">
            </contentExtension>
         </includes>
      </viewerContentBinding>
      <viewerActionBinding
            viewerId="org.eclipse.mylyn.commons.ui.identity.navigator.People">
         <includes>
            <actionExtension
                  pattern="org.eclipse.mylyn.commons.ui.identity.navigator.*">
            </actionExtension>
         </includes>
      </viewerActionBinding>
   </extension>
   <extension
         point="org.eclipse.ui.navigator.navigatorContent">
      <navigatorContent
            activeByDefault="true"
            contentProvider="org.eclipse.mylyn.internal.commons.identity.ui.PeopleContentProvider"
            icon="icons/obj16/person.gif"
            id="org.eclipse.mylyn.commons.ui.identity.navigator.People"
            labelProvider="org.eclipse.mylyn.internal.commons.identity.ui.PersonLabelProvider"
            name="People">
         <possibleChildren>
            <instanceof
                  value="java.lang.Object">
            </instanceof>
         </possibleChildren>
         <triggerPoints>
            <instanceof
                  value="org.eclipse.mylyn.internal.commons.identity.ui.PeopleCategory">
            </instanceof></triggerPoints>
         <commonSorter
               class="org.eclipse.mylyn.internal.commons.identity.ui.PeopleSorter">
         </commonSorter>
      </navigatorContent>
   </extension>

   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="toolbar:org.eclipse.mylyn.commons.ui.identity.navigator.People">
         <command
               commandId="org.eclipse.ui.file.refresh"
               style="push">
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.mylyn.internal.commons.identity.ui.RefreshHandler"
            commandId="org.eclipse.ui.file.refresh">
         <activeWhen>
			<with variable="activePartId">
			    <equals value="org.eclipse.mylyn.commons.ui.identity.navigator.People"/>
			</with> 
         </activeWhen>
      </handler>
   </extension>
</plugin>

Back to the top