Interface DesignerListener

  • All Superinterfaces:
    java.util.EventListener

    public interface DesignerListener
    extends java.util.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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void closeDesigner()
      Called when the user closed the i-net Designer.
      void openReport​(java.net.URL location)
      Called when the user opened a report.
      void saveReport​(java.net.URL location)
      Called when the user saved a report.
    • Method Detail

      • closeDesigner

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

        void saveReport​(java.net.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​(java.net.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