Interface DRIScriptlet

All Known Implementing Classes:
AbstractScriptlet

public interface DRIScriptlet

DRIScriptlet interface.

Author:
Ricardo Mariaca
  • Method Details

    • getName

      String getName()

      getName.

      Returns:
      a String object.
    • beforeReportInit

      void beforeReportInit(ReportParameters reportParameters)
      Called before the report is initialized.
      Parameters:
      reportParameters - a ReportParameters object.
    • afterReportInit

      void afterReportInit(ReportParameters reportParameters)
      Called after the report is initialized.
      Parameters:
      reportParameters - a ReportParameters object.
    • beforePageInit

      void beforePageInit(ReportParameters reportParameters)
      Called before each page is initialized.
      Parameters:
      reportParameters - a ReportParameters object.
    • afterPageInit

      void afterPageInit(ReportParameters reportParameters)
      Called after each page is initialized.
      Parameters:
      reportParameters - a ReportParameters object.
    • beforeColumnInit

      void beforeColumnInit(ReportParameters reportParameters)
      Called before each column is initialized.
      Parameters:
      reportParameters - a ReportParameters object.
    • afterColumnInit

      void afterColumnInit(ReportParameters reportParameters)
      Called after each column is initialized.
      Parameters:
      reportParameters - a ReportParameters object.
    • beforeGroupInit

      void beforeGroupInit(String groupName, ReportParameters reportParameters)
      Called before a group is initialized.
      Parameters:
      groupName - the group name
      reportParameters - a ReportParameters object.
    • afterGroupInit

      void afterGroupInit(String groupName, ReportParameters reportParameters)
      Called after a group is initialized.
      Parameters:
      groupName - the group name
      reportParameters - a ReportParameters object.
    • beforeDetailEval

      void beforeDetailEval(ReportParameters reportParameters)
      Called before evaluating each detail.
      Parameters:
      reportParameters - a ReportParameters object.
    • afterDetailEval

      void afterDetailEval(ReportParameters reportParameters)
      Called after evaluating each detail.
      Parameters:
      reportParameters - a ReportParameters object.