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 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, use Report.getReportColumns() instead.
        Get an Iterator over a collection of ReportColumns, the collection will be ordered by ColumnOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. The columns for a Report
        Returns:
        An Iterator over a collection of ReportColumn 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, use Report.getReportSorts() instead.
        Get an Iterator over a collection of ReportSorts, the collection will be ordered by SortOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. The sorts for a Report
        Returns:
        An Iterator over a collection of ReportSort 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, use Report.getReportSelections() instead.
        Get an Iterator over an ordered collection of ReportSelections. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. The selections for a Report
        Returns:
        An Iterator over an ordered collection of ReportSelection objects .