My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

<extension
id="databaseobject.category.wizards"
name="Custom Wizard"
point="org.eclipse.ui.newWizards">
<category
id="databaseobject.category.wizards"
name="DatabaseObject">
</category>
<wizard
category="databaseobject.category.wizards"
class="databaseobject.wizards.NewProjectWizard"
id="databseobject.wizard.new.custom"
name="Database Objects project">
</wizard>
</extension>

<extension
id="databaseobject.category.projectNatureId"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="databaseobject.nature.ProjectNature">
</run>
</runtime>
</extension>

<extension point="org.eclipse.ui.ide.projectNatureImages">
<image icon="icons/dummy-nature.png"
id="databaseobject.image.natureId"
natureId="databaseobject.category.projectNatureId"></image>
</extension>

<extension
point="org.eclipse.ui.propertyPages">
<page
class="databaseobject.properties.DatabaseObjectPropertyPage"
id="databaseobject.properties.DatabaseObjectPropertyPage"
name="Database Objects properties">
<filter name="nature"
value="databaseobject.category.projectNatureId"/>
</page>
</extension>


<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
id="DatabaseObject.contribution1"
objectClass="org.eclipse.core.resources.IFolder">
<menu
id="DatabaseObject.menu1"
label="Database Object"
path="additions">
<separator
name="group1">
</separator>
</menu>
<action
class="databaseobject.popup.actions.NewAction"
enablesFor="1"
id="DatabaseObject.newAction"
label="Extract PL/SQL packages"
menubarPath="DatabaseObject.menu1/group1">
</action>
</objectContribution>
</extension>

<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
id="DatabaseObject.contribution1"
objectClass="org.eclipse.core.resources.IFile">
<menu
id="DatabaseObject.menu1"
label="Database Object"
path="additions">
<separator
name="group1">
</separator>
</menu>
<action
class="databaseobject.popup.actions.DeployAction"
enablesFor="1"
id="DatabaseObject.deployObject"
label="Deploy database object"
menubarPath="DatabaseObject.menu1/group1">
</action>
</objectContribution>
</extension>



</plugin>

Change log

r537 by stanislawbartkowski on Feb 5, 2012   Diff
First commit
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 2799 bytes, 97 lines

File properties

svn:mime-type
text/plain
Powered by Google Project Hosting