-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
43 lines (39 loc) · 1.57 KB
/
plugin.xml
File metadata and controls
43 lines (39 loc) · 1.57 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.ui.navigator.navigatorContent">
<navigatorContent
id="org.eclipse.ui.examples.navigator.propertiesContent"
name="Properties File Contents"
contentProvider="org.eclipse.ui.android.sorted.res.NodeContentProvider"
labelProvider="org.eclipse.ui.android.sorted.res.NodeLabelProvider"
activeByDefault="true"
priority="normal" >
<triggerPoints>
<or>
<instanceof value="org.eclipse.core.resources.IResource"/>
<instanceof value="org.eclipse.ui.android.sorted.res.data.AbstractNode"/>
</or>
</triggerPoints>
<possibleChildren>
<or>
<instanceof value="org.eclipse.core.resources.IResource"/>
<instanceof value="org.eclipse.ui.android.sorted.res.data.AbstractNode"/>
</or>
</possibleChildren>
<actionProvider
class="org.eclipse.ui.android.sorted.res.NodeActionProvider"
id="org.eclipse.ui.examples.navigator.NodeActionProvider.OpenProvidor">
</actionProvider>
</navigatorContent>
</extension>
<extension
point="org.eclipse.ui.navigator.viewer">
<viewerContentBinding viewerId="org.eclipse.ui.navigator.ProjectExplorer">
<includes>
<contentExtension pattern="org.eclipse.ui.examples.navigator.propertiesContent"/>
</includes>
</viewerContentBinding>
</extension>
</plugin>