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) Java Constants"

(IScalarParameterModel)
(19 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
=== [[DesignChoiceConstants (BIRT)]] ===
 
=== [[DesignChoiceConstants (BIRT)]] ===
 
One of the most powerful DEAPI constants.  There are 82 choices covering everything from FONT style to left to right (BIDI) orientation.
 
One of the most powerful DEAPI constants.  There are 82 choices covering everything from FONT style to left to right (BIDI) orientation.
 +
 +
=== [[ICellModel (BIRT)]] ===
 +
Properties that are specific to a cell and its descendants.
 +
 +
=== [[IDataGroupModel (BIRT) ]] ===
 +
Properties that are used when working with groups.
 +
 +
=== [[IDataSetModel (BIRT) ]] ===
 +
Properties used to control data sets, particular emphasis on SQL queries.
 +
 +
=== [[IGroupElementModel (BIRT) ]] ===
 +
Properties used for groups.
 +
 +
=== [[ IReportDesignModel ]] ===
 +
When you are working with the design of a report these are the properties that are available.
 +
 +
=== [[ IReportItemModel ]] ===
 +
When you are working with an instance of a report these are the properties that are available on the top level object.
 +
 +
=== [[ IScalarParameterModel ]] ===
 +
Properties that are useful while working with scalar parameters.
 +
 +
=== [[ISimpleMasterPageModel (BIRT)]] ===
 +
Properties that are used when working with the Page Element.
 +
 +
=== [[IStyleModel (BIRT)]] ===
 +
Style Model contains the property names used when applying styles to cells and controls.  This list is somewhat redundant with the DesignChoiceConstants values.
 +
 +
=== [[ITableColumnModel (BIRT)]] ===
 +
Properties that are unique to the Table elements.
  
 
=REAPI=
 
=REAPI=
Line 9: Line 39:
 
  IRenderOption option = new IRenderOption();
 
  IRenderOption option = new IRenderOption();
 
  option.setOutputFormat(IRenderOption.OUTPUT_FORMAT_HTML);
 
  option.setOutputFormat(IRenderOption.OUTPUT_FORMAT_HTML);
 +
 +
=== [[ReportDesignContants (BIRT)]] ===
 +
Allows you to get to the element that lives in any of the various slots available on the Report Design.
  
 
[[Category:BIRT]]
 
[[Category:BIRT]]
 
[[Category:BIRT Example]]
 
[[Category:BIRT Example]]
 
[[Category:BIRT Example Integration]]
 
[[Category:BIRT Example Integration]]
 +
[[Category:BIRT Example Report]]

Revision as of 15:43, 27 October 2008

< To: Examples (BIRT)

DEAPI

DesignChoiceConstants (BIRT)

One of the most powerful DEAPI constants. There are 82 choices covering everything from FONT style to left to right (BIDI) orientation.

ICellModel (BIRT)

Properties that are specific to a cell and its descendants.

IDataGroupModel (BIRT)

Properties that are used when working with groups.

IDataSetModel (BIRT)

Properties used to control data sets, particular emphasis on SQL queries.

IGroupElementModel (BIRT)

Properties used for groups.

IReportDesignModel

When you are working with the design of a report these are the properties that are available.

IReportItemModel

When you are working with an instance of a report these are the properties that are available on the top level object.

IScalarParameterModel

Properties that are useful while working with scalar parameters.

ISimpleMasterPageModel (BIRT)

Properties that are used when working with the Page Element.

IStyleModel (BIRT)

Style Model contains the property names used when applying styles to cells and controls. This list is somewhat redundant with the DesignChoiceConstants values.

ITableColumnModel (BIRT)

Properties that are unique to the Table elements.

REAPI

IRenderOption

IRenderOption option = new IRenderOption();
option.setOutputFormat(IRenderOption.OUTPUT_FORMAT_HTML);

ReportDesignContants (BIRT)

Allows you to get to the element that lives in any of the various slots available on the Report Design.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.