Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tracecompass-dev] xmlTimeGraphView entry hierarchy

Hello!

I'm writing a custom xml time graph view and I would like the entries
of the view to be grouped following a certain hierarchy.

I have a data structure as follows:

Tasks
 |-1
 | |-stats
 | |-locks
 |   |-1
 |   |-2
 |   |-3
 |-2
 | |-stats
 | |-locks
 |   |-1
 |   |-2
 |   |-3
 |-3
   |-stats
   |-locks
     |-1
     |-2
     |-3

I'm trying to display this hierarchy (locks grouped by tasks ids) using nested
entries as shown below, but I can't figure out why is not working, I'm only
seeing a flat hierarchy without any grouping.

<entry path="Tasks/*">
    <entry path="locks/*">
        <display type="self" />
    </entry>
</entry>  

What I'm not understanding?

Thank you!

http://bsc.es/disclaimer


Back to the top