forked from Xiaoying/BIRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
26 lines (25 loc) · 1.57 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<!-- Chart Library UI Framework Extension Points -->
<!--
Chart UI Sheets Extension Point.
Use this to register an attribute or data sheet with the Chart Designer UI.
To see how this extension point can be used, take a look at the extensions defined in org.eclipse.birt.chart.ui.extension plug-in.
-->
<extension-point id="uisheets" name="Sheet for Chart UI" schema="schema/chartui.exsd"/>
<!--
Chart Types (UI) Extension Point.
Use this to register an implementation of IChartType interface as a chart type with the Chart Designer UI.
To see how this extension point can be used, take a look at the extensions defined in org.eclipse.birt.chart.ui.extension plug-in.
-->
<extension-point id="types" name="Class for Chart Type Info" schema="schema/charttype.exsd"/>
<!--
Chart UI Change Listener Extension Point.
Use this to register an implementation of the IChangeListener interface as a model change listener with the Chart Designer. This extension is only needed if
you are providing a dynamic attribute or data sheet for use in the UI.
To see how this extension point can be used, take a look at the extensions defined in org.eclipse.birt.chart.ui.extension plug-in.
-->
<extension-point id="changelisteners" name="Listener Class for Model Change Events" schema="schema/changelistener.exsd"/>
<extension-point id="seriescomposites" name="Composites for series type specific Attribute and Data definitions" schema="schema/seriescomposites.exsd"/>
</plugin>