forked from Kanatoko/DozensEclipsePlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
37 lines (36 loc) · 1.22 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
category="net.jumperz.app.MDozens"
class="net.jumperz.app.MDozens.view.MDomainView"
icon="src/net/jumperz/app/MDozens/resources/text_double_underline.png"
id="net.jumperz.app.MDozens.view.MDomainView"
name="Domains"
restorable="true">
</view>
<category
id="net.jumperz.app.MDozens"
name="Dozens">
</category>
<view
category="net.jumperz.app.MDozens"
class="net.jumperz.app.MDozens.view.MRecordView"
icon="src/net/jumperz/app/MDozens/resources/text_inverse.png"
id="net.jumperz.app.MDozens.view.MRecordView"
name="Records"
restorable="true">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="net.jumperz.app.MDozens.MPerspectiveFactory1"
icon="src/net/jumperz/app/MDozens/resources/text_double_underline.png"
id="DozensEclipsePlugin.perspective1"
name="Dozens">
</perspective>
</extension>
</plugin>