This extension point specifies how the data that the new report item needs should be prepared. In a server environment, the plugin registry uses this extension point registration to discover supported report item extensions.
name of the extension item, such as "chart" for chart.
class which implements IReportItemQuery
getAllRows only applies when an ExtendedItem does not have a dataset defined, and the ReportItem is sharing data with its container. True means rowSet contains all rows, while false means rowSet contains only one row.
1.0
The following is a sample usage of the reportItemQUery extension point:
<p>
<pre>
<extension point="org.eclipse.birt.report.engine.reportitemquery"
name="chart report query extension">
<reportItem name="org.eclipse.birt.chart" class="org.eclipse.birt.report.chartitem.ChartQuery"/>
</extension>
</pre>
<p>
The value of the class attribute must be the fully qualified name of a class that implements <code>org.eclipse.birt.engine.extension.IReportItemQuery</code>. The interface provides the following functions:
<ul>
<li><code>public void setModelObject(ExtendedItemHandle handle)</code> ----
passes the model object to the extension provider. </li>
<li><code>public IBaseQueryDefinition[] getReportQueries(IBaseQueryDefinition parent) throws BirtException;</code> ----
returns report queries that engine uses to prepare data for the extended item.</li>
</ul>
<p>
Chart as an extended item
Copyright (c) 2005 Actuate Corporation. All rights reserved. This program and
the accompanying materials are made available under the terms of the Eclipse
Public License v1.0 which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html<br><br>
Contributors: Actuate Corporation - initial API and implementation