예제 #1
0
 /**
  * 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);
 }
예제 #2
0
 /**
  * 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);
 }
예제 #3
0
 /**
  * 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);
 }