tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.remote.ui / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin
4 >
5 <extension
6 point="org.eclipse.ui.preferencePages">
7 <page
8 category="org.eclipse.linuxtools.tmf.ui.TmfTracingPreferences"
9 class="org.eclipse.tracecompass.internal.tmf.remote.ui.preferences.ControlPreferencePage"
10 id="org.eclipse.linuxtools.tmf.remote.ui.preferences"
11 name="%preference.page.remote.connection.name">
12 </page>
13 <page
14 category="org.eclipse.linuxtools.tmf.ui.TmfTracingPreferences"
15 class="org.eclipse.tracecompass.internal.tmf.remote.ui.wizards.fetch.preferences.RemoteProfilesPreferencePage"
16 id="org.eclipse.linuxtools.tmf.remote.ui.preferences.remoteprofiles"
17 name="%preferences.page.remote.profiles.name">
18 </page>
19 </extension>
20 <extension
21 point="org.eclipse.ui.commands">
22 <command
23 categoryId="org.eclipse.linuxtools.tmf.ui.commands.category"
24 id="org.eclipse.tracecompass.tmf.remote.ui.command.fetchlog"
25 name="%command.import_remote_traces">
26 </command>
27 </extension>
28 <extension
29 point="org.eclipse.ui.handlers">
30 <handler
31 class="org.eclipse.tracecompass.internal.tmf.remote.ui.wizards.fetch.RemoteFetchLogHandler"
32 commandId="org.eclipse.tracecompass.tmf.remote.ui.command.fetchlog">
33 <activeWhen>
34 <and>
35 <count
36 value="1">
37 </count>
38 <iterate
39 operator="and">
40 <instanceof
41 value="org.eclipse.tracecompass.tmf.ui.project.model.TmfTraceFolder">
42 </instanceof>
43 </iterate>
44 </and>
45 </activeWhen>
46 </handler>
47 </extension>
48 <extension
49 point="org.eclipse.ui.menus">
50 <menuContribution
51 locationURI="popup:org.eclipse.ui.popup.any?after=org.eclipse.linuxtools.tmf.ui.command.importtracepkg">
52 <command
53 commandId="org.eclipse.tracecompass.tmf.remote.ui.command.fetchlog"
54 icon="icons/elcl16/fetch_log_wiz.gif"
55 label="%command.import_remote_traces"
56 mnemonic="%command.import_remote_traces.mnemonic"
57 style="push"
58 tooltip="%command.import_remote_traces.description">
59 <visibleWhen
60 checkEnabled="true">
61 </visibleWhen>
62 </command>
63 </menuContribution>
64 </extension>
65 </plugin>
This page took 0.049136 seconds and 5 git commands to generate.