|
Last change
on this file since 154 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:
795 bytes
|
| Line | |
|---|
| 1 | /* Copyright (C) 1999, 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 Per Bothner <[email protected]>
|
|---|
| 13 | * @date February, 1999.
|
|---|
| 14 | */
|
|---|
| 15 |
|
|---|
| 16 | /* Status: Believed complete and correct. */
|
|---|
| 17 |
|
|---|
| 18 | public abstract class WindowAdapter implements WindowListener
|
|---|
| 19 | {
|
|---|
| 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) { }
|
|---|
| 27 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.