/** * Handles the windowDeiconfied event by invoking the windowDeiconified methods on listener-a and * listener-b. * * @param e the window event */ public void windowDeiconified(WindowEvent e) { ((WindowListener) a).windowDeiconified(e); ((WindowListener) b).windowDeiconified(e); }
/** * Handles the windowDeactivated event by invoking the windowDeactivated methods on listener-a and * listener-b. * * @param e the window event */ public void windowDeactivated(WindowEvent e) { ((WindowListener) a).windowDeactivated(e); ((WindowListener) b).windowDeactivated(e); }
/** * Handles the windowClosed event by invoking the windowClosed methods on listener-a and * listener-b. * * @param e the window event */ public void windowClosed(WindowEvent e) { ((WindowListener) a).windowClosed(e); ((WindowListener) b).windowClosed(e); }