Interface ReportComp
-
- All Known Subinterfaces:
Report
public interface ReportComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<ReportColumn>
getReportColumns()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useReport.getReportColumns()
instead.Iterator<ReportSelection>
getReportSelections()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useReport.getReportSelections()
instead.Iterator<ReportSort>
getReportSorts()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useReport.getReportSorts()
instead.
-
-
-
Method Detail
-
getReportColumns
@Deprecated Iterator<ReportColumn> getReportColumns()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useReport.getReportColumns()
instead.Get anIterator
over a collection ofReportColumns
, the collection will be ordered by ColumnOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The columns for a Report- Returns:
- An
Iterator
over a collection ofReportColumn
objects , the collection will be ordered by ColumnOrder.
-
getReportSorts
@Deprecated Iterator<ReportSort> getReportSorts()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useReport.getReportSorts()
instead.Get anIterator
over a collection ofReportSorts
, the collection will be ordered by SortOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The sorts for a Report- Returns:
- An
Iterator
over a collection ofReportSort
objects , the collection will be ordered by SortOrder.
-
getReportSelections
@Deprecated Iterator<ReportSelection> getReportSelections()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useReport.getReportSelections()
instead.Get anIterator
over an ordered collection ofReportSelections
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The selections for a Report- Returns:
- An
Iterator
over an ordered collection ofReportSelection
objects .
-
-