2
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
2 |
<?eclipse version="3.2"?>
|
|
3 |
<plugin>
|
|
4 |
<extension-point id="connectionType" name="Connection Type" schema="schema/connectionType.exsd"/>
|
|
5 |
<extension-point id="service" name="Service" schema="schema/service.exsd"/>
|
|
6 |
<extension-point id="extensionFilter" name="Extension Filter" schema="schema/extensionFilter.exsd"/>
|
|
7 |
<extension-point id="connectedServiceFactory" name="Connected Service Factory" schema="schema/connectedServiceFactory.exsd"/>
|
|
8 |
|
|
9 |
<extension
|
|
10 |
point="org.eclipse.ui.views">
|
|
11 |
<view
|
|
12 |
name="%ViewName"
|
|
13 |
icon="icons/connection.png"
|
|
14 |
category="com.nokia.carbide.cpp"
|
|
15 |
class="com.nokia.carbide.remoteconnections.view.ConnectionsView"
|
|
16 |
id="com.nokia.carbide.remoteconnections.view.ConnectionsView">
|
|
17 |
</view>
|
|
18 |
</extension>
|
|
19 |
<extension
|
|
20 |
point="org.eclipse.ui.perspectiveExtensions">
|
|
21 |
<perspectiveExtension
|
|
22 |
targetID="com.nokia.carbide.cpp.CarbideCppPerspective">
|
|
23 |
<view
|
|
24 |
id="com.nokia.carbide.remoteconnections.view.ConnectionsView"
|
|
25 |
relationship="stack"
|
|
26 |
relative="org.eclipse.ui.views.TaskList">
|
|
27 |
</view>
|
|
28 |
</perspectiveExtension>
|
|
29 |
</extension>
|
|
30 |
<extension
|
|
31 |
point="org.eclipse.ui.exportWizards">
|
|
32 |
<category
|
|
33 |
id="com.nokia.carbide.remoteConnections.category"
|
|
34 |
name="%CategoryName">
|
|
35 |
</category>
|
|
36 |
<wizard
|
|
37 |
category="com.nokia.carbide.remoteConnections.category"
|
|
38 |
class="com.nokia.carbide.remoteconnections.wizard.ExportWizard"
|
|
39 |
icon="icons/connection.png"
|
|
40 |
id="com.nokia.carbide.remoteConnections.exportWizard"
|
|
41 |
name="%WizardName">
|
|
42 |
<description>
|
|
43 |
%Export.desc
|
|
44 |
</description>
|
|
45 |
</wizard>
|
|
46 |
</extension>
|
|
47 |
<extension
|
|
48 |
point="org.eclipse.ui.importWizards">
|
|
49 |
<category
|
|
50 |
id="com.nokia.carbide.remoteConnections.category"
|
|
51 |
name="%CategoryName">
|
|
52 |
</category>
|
|
53 |
<wizard
|
|
54 |
category="com.nokia.carbide.remoteConnections.category"
|
|
55 |
class="com.nokia.carbide.remoteconnections.wizard.ImportWizard"
|
|
56 |
icon="icons/connection.png"
|
|
57 |
id="com.nokia.carbide.remoteConnections.importWizard"
|
|
58 |
name="%WizardName">
|
|
59 |
<description>
|
|
60 |
%Import.desc
|
|
61 |
</description>
|
|
62 |
</wizard>
|
|
63 |
</extension>
|
|
64 |
<extension
|
|
65 |
point="org.eclipse.ui.actionSets">
|
|
66 |
<actionSet
|
|
67 |
id="com.nokia.carbide.remoteConnections.OnDevice.actionSet"
|
|
68 |
label="On-Device Connections"
|
|
69 |
visible="true">
|
|
70 |
<action
|
|
71 |
class="com.nokia.carbide.remoteconnections.settings.ui.OnDeviceConnectionAction"
|
|
72 |
id="com.nokia.carbide.remoteConnections.OnDevice.action"
|
|
73 |
label="%OnDevice.label"
|
|
74 |
menubarPath="help/onDeviceGroup">
|
|
75 |
</action>
|
|
76 |
</actionSet>
|
|
77 |
</extension>
|
|
78 |
|
|
79 |
</plugin>
|