Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Raynaud2013-11-14 11:58:46 +0000
committerXavier Raynaud2013-11-14 15:05:42 +0000
commitb29ea2393d66bd9e92666fda954b4588f0604e0e (patch)
treedc257d68766d1fc2ea6320d7782fd821271e6b4f /lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml
parent88ef14efe76c44b7d145e918036e255046329d05 (diff)
downloadorg.eclipse.linuxtools-b29ea2393d66bd9e92666fda954b4588f0604e0e.tar.gz
org.eclipse.linuxtools-b29ea2393d66bd9e92666fda954b4588f0604e0e.tar.xz
org.eclipse.linuxtools-b29ea2393d66bd9e92666fda954b4588f0604e0e.zip
TMF: Export trace to text
Add a command to export traces to text. If a filter is applied, only filtered elements are exported. Change-Id: Ie213eda715f68104572704cb3c08226aa5c52a85 Signed-off-by: Xavier Raynaud <xavier.raynaud@kalray.eu> Reviewed-on: https://git.eclipse.org/r/17813 Tested-by: Hudson CI Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com> IP-Clean: Bernd Hufmann <bernd.hufmann@ericsson.com> Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
Diffstat (limited to 'lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml')
-rw-r--r--lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml b/lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml
index c0a01acfa6..229929ce81 100644
--- a/lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml
+++ b/lttng/org.eclipse.linuxtools.tmf.ui/plugin.xml
@@ -822,6 +822,12 @@
id="org.eclipse.linuxtools.tmf.ui.batch_import"
name="%command.batch_import">
</command>
+ <command
+ categoryId="org.eclipse.linuxtools.tmf.ui.commands.category"
+ description="%command.export_to_text.description"
+ id="org.eclipse.linuxtools.tmf.ui.exportToText"
+ name="%command.export_to_text">
+ </command>
</extension>
<extension
point="org.eclipse.ui.handlers">
@@ -1124,6 +1130,10 @@
</and>
</activeWhen>
</handler>
+ <handler
+ class="org.eclipse.linuxtools.internal.tmf.ui.commands.ExportToTextCommandHandler"
+ commandId="org.eclipse.linuxtools.tmf.ui.exportToText">
+ </handler>
</extension>
<extension point="org.eclipse.ui.bindings">
<key

Back to the top