-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
31 lines (29 loc) · 908 Bytes
/
plugin.xml
File metadata and controls
31 lines (29 loc) · 908 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
name="HBasePlugin"
extensions="java"
icon="icons/sample.gif"
contributorClass="hbaseplugin.editors.HBasePluginPageEditorContributor"
class="hbaseplugin.editors.HBasePluginPageEditor"
id="hbaseplugin.editors.HBasePluginPageEditor">
</editor>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
name="HBase Plugin"
id="HBasePlugin">
</category>
<wizard
name="HBase Java API"
icon="icons/hbase.png"
category="HBasePlugin"
class="hbaseplugin.wizards.HBasePluginWizard"
id="hbaseplugin.wizards.HBasePluginWizard">
</wizard>
</extension>
</plugin>