Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "BIRT Design Engine API"

Line 12: Line 12:
 
* [[Dynamic Table]] - Example illustrating how to create a table with a variable number of columns using the DE API
 
* [[Dynamic Table]] - Example illustrating how to create a table with a variable number of columns using the DE API
 
* [[Execute Modified Report]] - This example uses the previous example in combination with the Report Engine API to modify the currently running report
 
* [[Execute Modified Report]] - This example uses the previous example in combination with the Report Engine API to modify the currently running report
 +
* [[Dynamic Report Servlet]] - This example uses the Dynamic Table example in combination with the Report Engine API to modify the currently running report from within a servlet.

Revision as of 16:55, 12 October 2006

BIRT Design Engine API Examples

Several examples of using the DE API are presented below. Please read the Design Engine API page to understand how the API works.
For more examples refer to the test folder under the org.eclipse.birt.report.model project within the BIRT source code.


Add comments at the end of the example.


  • Simple Create - Simple example to illustrate creating a report using the DE API
  • Dynamic Table - Example illustrating how to create a table with a variable number of columns using the DE API
  • Execute Modified Report - This example uses the previous example in combination with the Report Engine API to modify the currently running report
  • Dynamic Report Servlet - This example uses the Dynamic Table example in combination with the Report Engine API to modify the currently running report from within a servlet.

Back to the top