AbstractFontElement |
The abstract class AbstractFontElement implements
FontProperties class and extends Element .
|
AbstractLineElement |
This class is an abstract implementation of the interface LineProperties.
|
AbstractPictureElement |
Parent class of all elements which shows a picture.
|
AbstractValueElement |
|
Area |
The Area element of the Runtime Designer Component.
|
Box |
This class represents a box in the report.
|
BySummaryOrder |
BySummaryOrder saves the options for the sort by aggregate function.
|
CacheRenderData |
This class is a RenderData source object running on i-net Clear Reports cache, for use with i-net Clear Reports Viewer.
|
CascadingValueProvider |
Creates a CascadingValueProvider which provides default values for a prompt based on a value of a parent prompt field.
|
Chart2 |
This class represents a chart element with new chart API that has been or should be drawn in a report.
|
CrossTab |
This class represents a cross table that has been or should be drawn in a report.
|
CrossTabBody |
This is the body of the CrossTab.
|
CrossTabBodyCell |
Described a cell in the body of the crosstab.
|
CrossTabDescriptionSection |
Description section for the Crosstab.
|
CrossTabGridLineFormat |
Represents the properties of a crosstab grid line.
This class is part of the RDC.
|
CrossTabHeader |
A single CrossTab header.
|
CrossTabHeaderList |
This is a container for CrossTabHeader.
|
CrossTabOptions |
The properties of the Crosstab.
|
Database |
This class is a layer between a DBMS or any other data source and i-net Clear Reports.
|
DatabaseField |
This class represents a database field.
A DatabaseField holds the information needed to use a field from a database table.
When a field will be evaluated the data of the field are fetched for each record in the table.
|
DatabaseMetaDataFactory |
This class is helpful if you want to use a self defined Database class as base for report design with i-net Designer.
|
DatabasePicture |
It represents a picture that is saved in a BLOB of the database.
|
DatabaseTables |
The class DatabaseTables is the starting point if you want to configure everything has to do
with databases, tables, connections, table joins and so on.
|
Datasource |
A datasource represents a connection to a database.
|
DefaultValue |
Holder for a PromptField 's default value and its description.
|
Element |
The class Element is the superclass of all visible objects in
the report. Each of them is inheriting from this class.
|
Engine |
This is the i-net Clear Reports report engine.
|
EngineBundle |
A bundle of multiple engines you want to render as one document.
|
EngineError |
This class provides information about an execution error of an
Engine or a sub Engine.
|
EngineRenderData |
This implementation of RenderData uses a created Engine to provide all render data to the i-net Clear Reports viewer.
|
EngineStatus |
This class provides status information for an Engine of a main report.
|
FacturXSettings |
Settings for the FacturX plugin to generate a PDF file with a FacturX attachment.
|
Field |
Field is the superclass of the different types of fields which can be used in a report.
|
FieldElement |
A FieldElement is an object like a label but the content of it comes dynamically from a field, i.e. a DatabaseField , FormulaField ,
PromptField etc.
|
FieldPart |
This class provides an object commonly known as a FieldElement , i.e. with a DatabaseField or a SummaryField .
|
Fields |
The Fields set for the Runtime Designer Component.
|
Fields.UnknownField |
FOR INTERNAL USE ONLY
a placeholder field for when a field could not be parsed
|
FieldValueProvider |
The FieldValueProvider takes one or two DatabaseFields and at run time provides the values in the
fields as default values.
|
FormulaField |
This class represents a field, which value is calculated by a formula.
|
FormulaRange |
This class is the representation of a range, e.g. defined with a formula like '20 to_ 30'.
|
Group |
This class represents a grouping and disposes references to group header- and group footer areas.
|
GroupField |
The GroupField represents a group name field, which is automatically created with the creation of a Group object.
|
JavaBean |
An instance of this class is an i-net Clear Reports Element that represents a Java Bean
which can be rendered to a report.
|
Join |
A Join represents a connection between two tables.
|
Line |
With the Line class you can draw a vertical or horizontal line anywhere in your report.
|
Paragraph |
The Paragraph class represents a line in a Text
and is a set of TextPart elements and FieldPart
elements.
|
Picture |
This class represent a static picture.
|
PromptField |
This class represents a prompt, that is, a field whose value(s) are asked for from the user at runtime.
|
QueryValueProvider |
This implementation of DynamicValueProvider takes a given SQL statement and executes it as a
query on the given data source.
|
RDC |
This is the main class of the Runtime Designer Component of i-net Clear Reports.
|
RDC.FieldsRefreshEvent |
FOR INTERNAL USE ONLY
|
Region |
The Region class is the super class of Area and Section.
|
ReportComponent |
This is the base class of all report components.
|
ReportKeyFactory |
This class represents the description / identification of a report.
|
ReportProperties |
The report properties describes global options for a report or sub report.
|
ReportServletJSP |
This class implements the communication between the client that
created the requested report and the engine.
|
Section |
The Section class represents the sections of a report.
Each report consists of several sections which are associated with
Area s of type: Report Header, Page Header, Group Header,
Detail, Group Footer, Report Footer and Page Footer. Here you can add
elements to your report, like lines, boxes, text fields, pictures and of course
fields with dynamic content, called FieldElement .
|
SignatureForm |
This class describes the visible Signature in PDF documents, that will be shown in Adobe Reader.
|
SortField |
With this field you can only set the sorting of the report data.
|
SpecialField |
The SpecialField was created for contents that's source is in the environment of the
running engine or of the engine itself.
|
SpecifiedOrder |
This class saved the details of the specified sort order of groups
|
SQLField |
This class represents a field for SQL statements.
This class is part of the RDC.
|
SQLValueProvider |
This implementation of DynamicValueProvider takes a given SQL statement and executes it as a
query on the given data source.
|
Subreport |
Engines cannot hold more than one datasource, so if you need a report
that uses data from two or more datasources, you have to use Subreport objects
in the report.
|
SubreportLink |
A SubreportLink object links a field in main report with a field in subreport with use of a prompt field in the subreport.
|
SummaryField |
A summary field summarizes data of other fields in the report.
|
SummaryInfo |
With this class SummaryInfo you can get/set the report summary info specified in the "Summary Info" of the i-net Designer
or with the setXXX methods in this class.
For example:
Engine eng = new Engine( Engine.NO_EXPORT );
eng.setReportFile( "file:C:/MyReports/Report1.rpt" );
SummaryInfo su = eng.getSummaryInfo();
System.out.println("created: "+su.getCreated());
System.out.println("LastSaved: "+su.getLastSaved());
System.out.println("Author: "+su.getAuthor());
System.out.println("Subject: "+su.getSubject());
System.out.println("ReportTitle: "+su.getReportTitle());
|
TableSource |
A TableSource is the representation of a table, a view, a stored procedure or a SQL command.
|
Text |
This class provides an object that represents a label.
|
TextPart |
The text objects in a report are separated into parts of text, where each part has its own format, i.e. color and size.
|
Trigger |
A trigger is a runtime value that will be evaluated at runtime and can be accessed after a report has rendered.
|
Validity |
This class hold the state of an checked object.
|