Remove Dwarf2 restriction on EH frame generation
[official-gcc.git] / libjava / java / awt / event / ComponentListener.java
blob3302cf2a713c53a523cd62c7e8d753ecd9572884
1 /* Copyright (C) 2000 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 Tom Tromey <tromey@cygnus.com>
13 * @date April 8, 2000
16 /* Status: Believed complete and correct to JDK 1.2. */
18 public interface ComponentListener extends java.util.EventListener
20 public void componentHidden (ComponentEvent e);
21 public void componentMoved (ComponentEvent e);
22 public void componentResized (ComponentEvent e);
23 public void componentShown (ComponentEvent e);