Interface WindowPersisterListener


public interface WindowPersisterListener
This interface defines a callback for the WindowPersister to report when top-level YAAC windows are created and destroyed.
Author:
Andrew Pavlin, KA2DDO
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    windowAdded(String windowName, Window window)
    Report when a new window is added to the window collection.
    void
    windowRemoved(String windowName, Window window)
    Report when a new window is removed from the window collection.
  • Method Details

    • windowAdded

      void windowAdded(String windowName, Window window)
      Report when a new window is added to the window collection.
      Parameters:
      windowName - String title of window
      window - Window object
    • windowRemoved

      void windowRemoved(String windowName, Window window)
      Report when a new window is removed from the window collection.
      Parameters:
      windowName - String title of window
      window - Window object