-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
203 lines (201 loc) · 5.73 KB
/
plugin.xml
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="usc.edu.sampleapp.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="Perspective"
class="usc.edu.sampleapp.Perspective"
id="usc.edu.sampleapp.perspective">
</perspective>
</extension>
<extension
point="org.eclipse.ui.views">
<view
name="View"
class="usc.edu.sampleapp.View"
id="usc.edu.sampleapp.view">
</view>
</extension>
<extension
point="org.eclipse.ui.views">
<view
class="usc.edu.sampleapp.NewView"
id="usc.edu.sampleapp.newview"
name="View">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="*">
<view
standalone="true"
minimized="false"
relative="org.eclipse.ui.editorss"
relationship="left"
id="usc.edu.sampleapp.view">
</view>
</perspectiveExtension>
</extension>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="usc.edu.sampleapp.application"
description="About NLPUtils"
name="NLPUtils">
<property
name="windowImages"
value="icons/alt_window_16.gif,icons/alt_window_32.gif">
</property>
<property
name="appName"
value="NLPUtils">
</property>
<property
name="aboutImage"
value="icons/welcome16.gif">
</property>
<property
name="preferenceCustomization"
value="plugin_customization.ini">
</property>
<property
name="startupForegroundColor"
value="000000">
</property>
<property
name="startupMessageRect"
value="7,252,445,20">
</property>
<property
name="startupProgressRect"
value="5,275,445,15">
</property>
</product>
</extension>
<extension
point="org.eclipse.ui.intro">
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
icon="icons/welcome16.gif"
id="usc.edu.sampleapp.intro">
</intro>
<introProductBinding
introId="usc.edu.sampleapp.intro"
productId="usc.edu.sampleapp.product">
</introProductBinding>
<intro
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
id="usc.edu.sampleapp.intro1">
</intro>
<introProductBinding
introId="usc.edu.sampleapp.intro1"
productId="usc.edu.sampleapp.product3">
</introProductBinding>
</extension>
<extension
point="org.eclipse.ui.intro.config">
<config
introId="usc.edu.sampleapp.intro"
content="introContent.xml"
id="usc.edu.sampleapp.configId">
<presentation
home-page-id="root">
<implementation
kind="html"
os="win32,linux,macosx">
</implementation>
</presentation>
</config>
<config
content="introContent.xml"
id="usc.edu.sampleapp.introConfigId"
introId="usc.edu.sampleapp.intro1">
<presentation
home-page-id="root">
<implementation
kind="html"
os="win32,linux,macosx"
style="content/shared.css">
</implementation>
</presentation>
</config>
</extension>
<extension
id="product1"
point="org.eclipse.core.runtime.products">
<product
application="usc.edu.sampleview.application"
name="product">
<property
name="appName"
value="product">
</property>
<property
name="aboutImage"
value="icons/alt_window_32.gif">
</property>
<property
name="aboutText"
value="This gives information about NLPutils">
</property>
<property
name="windowImages"
value="icons/alt_window_16.gif">
</property>
</product>
</extension>
<extension
point="org.eclipse.help.toc">
<toc
file="toc.xml"
primary="true">
</toc>
<toc
file="tocconcepts.xml">
</toc>
<toc
file="tocgettingstarted.xml">
</toc>
<toc
file="tocreference.xml">
</toc>
<toc
file="tocsamples.xml">
</toc>
<toc
file="toctasks.xml">
</toc>
</extension>
<extension
id="product3"
point="org.eclipse.core.runtime.products">
<product
application="usc.edu.sampleapp.application"
name="usc.edu.sample.product">
<property
name="appName"
value="usc.edu.sample.product">
</property>
<property
name="aboutImage"
value="icons/welcome16.gif">
</property>
<property
name="windowImages"
value="icons/alt_window_16.gif,icons/alt_window_32.gif">
</property>
</product>
</extension>
</plugin>