Interface DesignerListener

All Superinterfaces:
EventListener

public interface DesignerListener extends EventListener
This Listener can be used by Applications which start an embedded i-net Designer to be informed when important tasks are performed by the user.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called when the user closed the i-net Designer.
    void
    openReport(URL location)
    Called when the user opened a report.
    void
    saveReport(URL location)
    Called when the user saved a report.
  • Method Details

    • closeDesigner

      void closeDesigner()
      Called when the user closed the i-net Designer.
      Since:
      6.0
    • saveReport

      void saveReport(URL location)
      Called when the user saved a report. This is only guaranteed to work for the standard BasicDesignerDataModel class.
      Parameters:
      location - The URL of the report file saved.
      Since:
      6.0
    • openReport

      void openReport(URL location)
      Called when the user opened a report. This is only guaranteed to work for the standard BasicDesignerDataModel class.
      Parameters:
      location - The URL of the report file opened.
      Since:
      6.0