File: plugin.xml

package info (click to toggle)
eclipse-linuxtools 8.1.0%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 42,888 kB
  • sloc: java: 149,148; xml: 22,186; ansic: 15,426; cpp: 326; makefile: 42; javascript: 29; sh: 19; python: 10
file content (51 lines) | stat: -rw-r--r-- 2,058 bytes parent folder | download
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
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
    <extension
        point="org.eclipse.ui.preferencePages">
        <page
            name="%preference.dataTable.name"
            id="org.eclipse.linuxtools.generic.prefs.graphing.datatable"
            class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.DataTablePreferencePage"
            category="org.eclipse.linuxtools.generic.prefs.graphing"/>
        <page
            name="%preference.graph.name"
            id="org.eclipse.linuxtools.generic.prefs.graphing.graph"
            class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.GraphPreferencePage"
            category="org.eclipse.linuxtools.generic.prefs.graphing"/>
        <page
            name="%preference.graphing.name"
            class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.GraphingPreferencePage"
            category="org.eclipse.linuxtools.systemtap.prefs.view"
            id="org.eclipse.linuxtools.generic.prefs.graphing"/>
    </extension>

    <extension
        point="org.eclipse.core.runtime.preferences">
        <initializer class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.PreferenceInitializer"/>
    </extension>

    <extension
        point="org.eclipse.ui.editors">
        <editor
            class="org.eclipse.linuxtools.systemtap.graphing.ui.views.GraphSelectorEditor"
            default="false"
            id="org.eclipse.linuxtools.systemtap.graphing.ui.views.GraphSelectorEditor"
            name="Graphs">
        </editor>
    </extension>

    <extension
        point="org.eclipse.core.expressions.definitions">
        <definition
            id="org.eclipse.linuxtools.systemtap.graphing.ui.graphEditorEnablement">
         <with
               variable="activeEditorId">
            <equals
                  value="org.eclipse.linuxtools.systemtap.graphing.ui.views.GraphSelectorEditor">
            </equals>
         </with>
      </definition>
    </extension>

</plugin>