OSDN Git Service

bb804723d6478ac80bb75865f8bdbcc4df3265c7
[pf3gnuchains/gcc-fork.git] / libjava / java / awt / event / HierarchyBoundsAdapter.java
1 /* Copyright (C) 2000, 2002  Free Software Foundation
2
3 This file is part of GNU Classpath.
4
5 GNU Classpath is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 GNU Classpath is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNU Classpath; see the file COPYING.  If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
19
20 As a special exception, if you link this library with other files to
21 produce an executable, this library does not by itself cause the
22 resulting executable to be covered by the GNU General Public License.
23 This exception does not however invalidate any other reasons why the
24 executable file might be covered by the GNU General Public License. */
25
26 package java.awt.event;
27
28 /**
29  * @since 1.3
30  * @author Bryce McKinlay
31  */
32
33 /* Status:  Believed complete and correct. */
34
35 public abstract class HierarchyBoundsAdapter implements HierarchyBoundsListener
36 {
37   public void ancestorMoved(HierarchyEvent e)
38   {
39   }
40   
41   public void ancestorResized(HierarchyEvent e)
42   {
43   }
44 }