Remove Dwarf2 restriction on EH frame generation
[official-gcc.git] / libjava / java / awt / event / WindowAdapter.java
blobcaf2b18b48fde4cb2e855b82f784927739fd7938
1 /* Copyright (C) 1999 Free Software Foundation
3 This file is part of libjava.
5 This software is copyrighted work licensed under the terms of the
6 Libjava License. Please consult the file "LIBJAVA_LICENSE" for
7 details. */
9 package java.awt.event;
11 /**
12 * @author Per Bothner <bothner@cygnus.com>
13 * @date Fenruary, 1999.
16 /* Status: Believed complete and correct. */
18 public class WindowAdapter implements WindowListener
20 public void windowActivated (WindowEvent w) { }
21 public void windowClosed (WindowEvent w) { }
22 public void windowClosing (WindowEvent w) { }
23 public void windowDeactivated (WindowEvent w) { }
24 public void windowDeiconified (WindowEvent w) { }
25 public void windowIconified (WindowEvent w) { }
26 public void windowOpened (WindowEvent w) { }