forked from eclipse-tracecompass/org.eclipse.tracecompass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
47 lines (47 loc) · 2.21 KB
/
plugin.xml
File metadata and controls
47 lines (47 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.linuxtools.tmf.core.analysis">
<module
id="org.eclipse.tracecompass.examples.state.system.module"
name="Example State System Module"
analysis_module="org.eclipse.tracecompass.examples.core.analysis.ExampleStateSystemAnalysisModule"
automatic="false">
<tracetype
class="org.eclipse.tracecompass.tmf.core.trace.TmfTrace">
</tracetype>
</module>
<module
id="org.eclipse.tracecompass.examples.state.system.module.config"
name="Example State System Module"
analysis_module="org.eclipse.tracecompass.examples.core.analysis.config.ExampleConfigurableStateSystemAnalysisModule"
automatic="false">
<tracetype
class="org.eclipse.tracecompass.tmf.core.trace.TmfTrace">
</tracetype>
</module>
</extension>
<extension point="org.eclipse.tracecompass.tmf.core.dataprovider">
<dataProviderFactory
class="org.eclipse.tracecompass.examples.core.data.provider.ExampleTimeGraphProviderFactory"
id="org.eclipse.tracecompass.examples.timegraph.dataprovider">
</dataProviderFactory>
<dataProviderFactory
class="org.eclipse.tracecompass.examples.core.data.provider.ExampleXYDataProviderFactory"
id="org.eclipse.tracecompass.examples.xy.dataprovider">
</dataProviderFactory>
<dataProviderFactory
class="org.eclipse.tracecompass.examples.core.data.provider.ExampleDataTreeDataProviderFactory"
id="org.eclipse.tracecompass.examples.nomodulestats">
</dataProviderFactory>
<dataProviderFactory
class="org.eclipse.tracecompass.examples.core.data.provider.config.ExampleConfigurableDataTreeDataProviderFactory"
id="org.eclipse.tracecompass.examples.nomodulestats.config">
</dataProviderFactory>
<dataProviderFactory
class="org.eclipse.tracecompass.examples.core.data.provider.config.ExampleConfigurableTimeGraphProviderFactory"
id="org.eclipse.tracecompass.examples.timegraph.dataprovider.config">
</dataProviderFactory>
</extension>
</plugin>