forked from oracle-samples/oracle-db-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.xml
130 lines (120 loc) · 5.79 KB
/
extension.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<extension xmlns="http://jcp.org/jsr/198/extension-manifest"
id="@@extension.id@@"
version="@@extension.version@@.@@extension.build@@"
esdk-version="1.0" rsbundle-class="@@extension.resources@@">
<name>@@extension.name@@</name>
<owner>@@extension.owner@@ @@extension.owner.url@@</owner>
<feature id="@@extension.id@@"
xmlns="http://xmlns.oracle.com/ide/extension">
<name>@@extension.name@@</name>
<description>@@extension.descr@@</description>
<type>
<service can-user-disable="true"
reload-if-used="true" />
</type>
</feature>
<trigger-hooks
xmlns="http://xmlns.oracle.com/ide/extension">
<triggers
xmlns:c="http://xmlns.oracle.com/ide/customization">
<!-- Hack to add action to fully load the extension.
Typically (IMHO) worksheet actions would be part of a larger extension
with more natural triggers
-->
<actions
xmlns="http://xmlns.oracle.com/jdeveloper/1013/extension">
<action id="WorksheetAction.DUMMY">
<properties>
<property name="Name">${WORKSHEET_ACTION_DUMMY}
</property>
<!-- You could also use your own by putting path in rsbundle
e.g., MY_ICON = /oracle/db/example/sqldeveloper/extension/dependency/icons/my_icon.png
and referencing its key as res:${MY_ICON} -->
<!-- <property name="SmallIcon">${OracleIcons.DUKE}</property> -->
</properties>
</action>
</actions>
<controllers
xmlns="http://xmlns.oracle.com/ide/extension">
<controller
class="oracle.db.example.sqldeveloper.extension.worksheetAction.DummyActionController">
<update-rules>
<update-rule rule="always-enabled">
<action id="WorksheetAction.DUMMY" />
</update-rule>
</update-rules>
</controller>
</controllers>
<context-menu-hook rule="always-enabled">
<site idref="editor" /> <!-- can do multiple e.g.;, "db_nav;editor" -->
<menu>
<section
xmlns="http://jcp.org/jsr/198/extension-manifest"
id="SECTION_WINDOW_CTXT_MENU" weight="1.0">
<item action-ref="WorksheetAction.DUMMY"
weight="1.0" />
</section>
</menu>
</context-menu-hook>
<!-- end of force load extension hack -->
</triggers>
</trigger-hooks>
<hooks>
<jdeveloper-hook
xmlns="http://xmlns.oracle.com/jdeveloper/1013/extension">
<actions>
<action id="WorksheetAction.BOTH">
<properties>
<property name="Name">${WORKSHEET_ACTION_BOTH}
</property>
<!-- You could also use your own by putting path in rsbundle
e.g., MY_ICON = /oracle/db/example/sqldeveloper/extension/dependency/icons/my_icon.png
and referencing its key as res:${MY_ICON} -->
<property name="SmallIcon">${OracleIcons.DEBUG_BLUE}
</property>
</properties>
</action>
<action id="WorksheetAction.CONTEXT_MENU_ONLY">
<properties>
<property name="Name">${WORKSHEET_ACTION_CONTEXT_MENU_ONLY}
</property>
<!-- You could also use your own by putting path in rsbundle
e.g., MY_ICON = /oracle/db/example/sqldeveloper/extension/dependency/icons/my_icon.png
and referencing its key as res:${MY_ICON} -->
<property name="SmallIcon">${OracleIcons.DEBUG_PURPLE}
</property>
</properties>
</action>
<action id="WorksheetAction.TOOLBAR_ONLY">
<properties>
<property name="Name">${WORKSHEET_ACTION_TOOLBAR_ONLY}
</property>
<!-- You could also use your own by putting path in rsbundle
e.g., MY_ICON = /oracle/db/example/sqldeveloper/extension/dependency/icons/my_icon.png
and referencing its key as res:${MY_ICON} -->
<property name="SmallIcon">${OracleIcons.DEBUG_YELLOW}
</property>
</properties>
</action>
</actions>
</jdeveloper-hook>
<sqldev-worksheet-hook
xmlns="http://xmlns.oracle.com/sqldeveloper/sqldev-worksheet">
<provider>oracle.db.example.sqldeveloper.extension.worksheetAction.ExampleActionProvider
</provider>
</sqldev-worksheet-hook>
</hooks>
</extension>