Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Tasse2014-05-30 13:51:15 +0000
committerPatrick Tasse2014-06-03 14:50:48 +0000
commit8acaefc99983781120298365ffbfcb6e19d0bf2c (patch)
treea1ff2caf0bb46387f528f3dc480b777c124974b2
parent4cb0130fa86265ad8051d73734f2752d25e562a7 (diff)
downloadorg.eclipse.linuxtools-8acaefc99983781120298365ffbfcb6e19d0bf2c.tar.gz
org.eclipse.linuxtools-8acaefc99983781120298365ffbfcb6e19d0bf2c.tar.xz
org.eclipse.linuxtools-8acaefc99983781120298365ffbfcb6e19d0bf2c.zip
tmf: Fix tracetypeui type/experiment elements unnamed in the PDE editor
When an extension point element has many attributes we have to specify which one to use as label in the PDE editor. Change-Id: I5d4ad2dafbb3173217df1ac4bf2c1e43bcbb3cbf Signed-off-by: Patrick Tasse <patrick.tasse@gmail.com> Reviewed-on: https://git.eclipse.org/r/27586 Reviewed-by: Bernd Hufmann <bernd.hufmann@ericsson.com> Tested-by: Bernd Hufmann <bernd.hufmann@ericsson.com> Tested-by: Hudson CI
-rw-r--r--lttng/org.eclipse.linuxtools.tmf.ui/schema/org.eclipse.linuxtools.tmf.ui.tracetypeui.exsd10
1 files changed, 10 insertions, 0 deletions
diff --git a/lttng/org.eclipse.linuxtools.tmf.ui/schema/org.eclipse.linuxtools.tmf.ui.tracetypeui.exsd b/lttng/org.eclipse.linuxtools.tmf.ui/schema/org.eclipse.linuxtools.tmf.ui.tracetypeui.exsd
index b0a8fee37c..20b23806d3 100644
--- a/lttng/org.eclipse.linuxtools.tmf.ui/schema/org.eclipse.linuxtools.tmf.ui.tracetypeui.exsd
+++ b/lttng/org.eclipse.linuxtools.tmf.ui/schema/org.eclipse.linuxtools.tmf.ui.tracetypeui.exsd
@@ -49,6 +49,11 @@
</element>
<element name="type">
+ <annotation>
+ <appInfo>
+ <meta.element labelAttribute="tracetype"/>
+ </appInfo>
+ </annotation>
<complexType>
<sequence>
<element ref="eventsTableType" minOccurs="0" maxOccurs="1"/>
@@ -78,6 +83,11 @@
</element>
<element name="experiment">
+ <annotation>
+ <appInfo>
+ <meta.element labelAttribute="tracetype"/>
+ </appInfo>
+ </annotation>
<complexType>
<sequence>
<element ref="eventsTableType" minOccurs="0" maxOccurs="1"/>

Back to the top