|
Last change
on this file since 2 was 2, checked in by bird, 23 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
686 bytes
|
| Line | |
|---|
| 1 | /* Copyright (C) 2000 Free Software Foundation
|
|---|
| 2 |
|
|---|
| 3 | This file is part of libjava.
|
|---|
| 4 |
|
|---|
| 5 | This software is copyrighted work licensed under the terms of the
|
|---|
| 6 | Libjava License. Please consult the file "LIBJAVA_LICENSE" for
|
|---|
| 7 | details. */
|
|---|
| 8 |
|
|---|
| 9 | package java.awt.event;
|
|---|
| 10 |
|
|---|
| 11 | /**
|
|---|
| 12 | * @author Tom Tromey <[email protected]>
|
|---|
| 13 | * @date April 8, 2000
|
|---|
| 14 | */
|
|---|
| 15 |
|
|---|
| 16 | /* Status: Believed complete and correct to JDK 1.2. */
|
|---|
| 17 |
|
|---|
| 18 | public abstract class ComponentAdapter implements ComponentListener
|
|---|
| 19 | {
|
|---|
| 20 | public void componentHidden (ComponentEvent e)
|
|---|
| 21 | {
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | public void componentMoved (ComponentEvent e)
|
|---|
| 25 | {
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | public void componentResized (ComponentEvent e)
|
|---|
| 29 | {
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | public void componentShown (ComponentEvent e)
|
|---|
| 33 | {
|
|---|
| 34 | }
|
|---|
| 35 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.