-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
121 lines (119 loc) · 3.74 KB
/
plugin.xml
File metadata and controls
121 lines (119 loc) · 3.74 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="cn.iscas.idse.ui.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="RCP Perspective"
class="cn.iscas.idse.ui.Perspective"
id="IDSEUI.perspective">
</perspective>
</extension>
<extension
point="org.eclipse.ui.views">
<view
class="cn.iscas.idse.ui.ViewSearchResult"
id="idse.ui.view.ViewSearchResult"
name="搜索结果"
restorable="true">
</view>
<view
class="cn.iscas.idse.ui.ViewFileReader"
id="idse.ui.view.ViewFileReader"
name="文件信息"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.console.consoleFactories">
<consoleFactory
class="cn.iscas.idse.ui.ViewConsole"
label="Output">
</consoleFactory>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="cn.iscas.idse.ui.action.IndexToolItemHandler"
id="IDSEUI.command.index"
name="索引">
</command>
<command
defaultHandler="cn.iscas.idse.ui.action.SettingIndexToolItemHandler"
id="IDSEUI.command.setting"
name="配置">
</command>
<command
defaultHandler="cn.iscas.idse.ui.action.SettingIndexToolItemHandler"
id="IDSEUI.command.setting.index"
name="配置索引参数">
</command>
<command
defaultHandler="cn.iscas.idse.ui.action.SettingKnowledgeToolItemHandler"
id="IDSEUI.command.setting.knowledge"
name="配置知识挖掘参数">
</command>
<command
defaultHandler="cn.iscas.idse.ui.action.SettingResultToolItemHandler"
id="IDSEUI.command.setting.result"
name="配置搜索结果参数">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="IDSEUI.toolbar2">
<command
commandId="IDSEUI.command.index"
icon="icons/run_exc.gif"
label="创建索引"
style="push">
</command>
</toolbar>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="IDSEUI.toolbar3">
<command
commandId="IDSEUI.command.setting"
icon="icons/setting16.png"
label="配置"
style="pulldown">
</command>
</toolbar>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="menu:IDSEUI.command.setting">
<command
commandId="IDSEUI.command.setting.index"
label="配置索引参数"
style="push">
</command>
<command
commandId="IDSEUI.command.setting.knowledge"
label="配置知识挖掘参数"
style="push">
</command>
<command
commandId="IDSEUI.command.setting.result"
label="配置搜索结果参数"
style="push">
</command>
</menuContribution>
</extension>
</plugin>