com.crystaldecisions.sdk.occa.report.document
Interface IReportStatistics

All Known Implementing Classes:
ReportStatistics

public interface IReportStatistics

This interface enables you to get statistics information for the report. The information includes: report version number (major, minor, letter), last saved by (person's name), revision number, total editing time (in minutes), last printed date, creation date, last saved date


Method Summary
 java.util.Date getCreatedDate()
          Returns the date the report was created.
 java.util.Date getDataFetchDate()
          Returns the date the saved data was last fetched.
 java.util.Date getLastPrintedDate()
          Returns the last date the report was printed.
 java.lang.String getLastSavedByPersonName()
          Returns the person name who saved the report most recently.
 java.util.Date getLastSavedDate()
          Returns the last date the report was saved.
 int getReportVersionLetter()
          Returns the report version letter.
 int getReportVersionMajor()
          Returns the report version major.
 int getReportVersionMinor()
          Returns the report version minor.
 int getRevisionNumber()
          Returns revision number.
 int getTotalEditingTime()
          Returns total editing time (in minutes)
 

Method Detail

getReportVersionMajor

int getReportVersionMajor()

Returns the report version major.

Returns:
The ReportVersionMajor as aint.

getReportVersionMinor

int getReportVersionMinor()

Returns the report version minor.

Returns:
The ReportVersionMinor as aint.

getReportVersionLetter

int getReportVersionLetter()

Returns the report version letter.

Returns:
The ReportVersionLetter as aint.

getLastSavedByPersonName

java.lang.String getLastSavedByPersonName()

Returns the person name who saved the report most recently.

Returns:
The LastSavedByPersonName as a String.

getRevisionNumber

int getRevisionNumber()

Returns revision number.

Returns:
The RevisionNumber as a int.

getTotalEditingTime

int getTotalEditingTime()

Returns total editing time (in minutes)

Returns:
The TotalEditingTime as a int

getLastPrintedDate

java.util.Date getLastPrintedDate()

Returns the last date the report was printed.

Returns:
The LastPrintedDate as a Date.

getCreatedDate

java.util.Date getCreatedDate()

Returns the date the report was created.

Returns:
The CreatedDate as a Date.

getLastSavedDate

java.util.Date getLastSavedDate()

Returns the last date the report was saved.

Returns:
The LastSavedDate as a Date.

getDataFetchDate

java.util.Date getDataFetchDate()
Returns the date the saved data was last fetched.

Returns:
the date the saved data was last fetched.