source:
trunk/src/gcc/libjava/java/awt/event/FocusAdapter.java@
154
| Last change on this file since 154 was 2, checked in by , 23 years ago | |
|---|---|
|
|
| File size: 545 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 FocusAdapter implements FocusListener |
| 19 | { |
| 20 | public void focusGained (FocusEvent e) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | public void focusLost (FocusEvent e) |
| 25 | { |
| 26 | } |
| 27 | } |
Note:
See TracBrowser
for help on using the repository browser.
