-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
99 lines (87 loc) · 3.09 KB
/
plugin.xml
File metadata and controls
99 lines (87 loc) · 3.09 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
default="true"
name="SDM"
icon="icons/sqldalmaker.gif"
filenames="php.dal, java.dal, cpp.dal, python.dal, ruby.dal, go.dal"
class="com.sqldalmaker.eclipse.Editor2"
id="com.sqldalmaker.eclipse.Editor">
</editor>
</extension>
<extension
point="org.eclipse.ui.workbench.texteditor.hyperlinkDetectors">
<hyperlinkDetector
activate="true"
class="com.sqldalmaker.eclipse.EclipseXmlHyperlinkDetector"
id="com.sqldalmaker.eclipse.EclipseXmlHyperlinkDetector"
name="SDM Hyperlinks Detector"
targetId="org.eclipse.core.runtime.xml">
</hyperlinkDetector>
</extension>
<extension
id="com.sqldalmaker.xml.completionProposal"
point="org.eclipse.wst.sse.ui.completionProposal">
<proposalCategory
id="com.sqldalmaker.xml.completionProposal.category"
name="SDM Completion Proposals">
</proposalCategory>
<proposalComputer
activate="true"
categoryId="com.sqldalmaker.xml.completionProposal.category"
class="com.sqldalmaker.eclipse.EclipseXmlCompletionProposalComputer"
id="com.sqldalmaker.xml.completionProposalComputer">
<contentType id="org.eclipse.core.runtime.xml"/>
</proposalComputer>
</extension>
<extension
point="org.eclipse.ui.commands">
<category
id="com.sqldalmaker.commands.category"
name="SDM Category">
</category>
<command
categoryId="com.sqldalmaker.commands.category"
id="com.sqldalmaker.open_dal_file.command_id"
name="SDM Command"
defaultHandler="com.sqldalmaker.eclipse.EclipseToolbarActionHandler">
</command>
</extension>
<!--extension
point="org.eclipse.ui.handlers">
<handler
class="com.sqldalmaker.eclipse.handlers.SampleHandler"
commandId="com.sqldalmaker.eclipse.commands.sampleCommand">
</handler>
</extension-->
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="com.sqldalmaker.toolbar">
<command
commandId="com.sqldalmaker.open_dal_file.command_id"
icon="icons/sqldalmaker.gif"
id="com.sqldalmaker.toolbar.command_id"
style="pulldown"
tooltip="SDM">
</command>
</toolbar>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:com.sqldalmaker.toolbar.command_id">
<dynamic
id="com.sqldalmaker.dynamic_menu">
<class
class="com.sqldalmaker.eclipse.EclipseToolbarDynamicMenu">
</class>
</dynamic>
</menuContribution>
</extension>
</plugin>