source:
trunk/src/gcc/libjava/java/awt/event/MouseAdapter.java@
154
| Last change on this file since 154 was 2, checked in by , 23 years ago | |
|---|---|
|
|
| File size: 702 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 MouseAdapter implements MouseListener |
| 19 | { |
| 20 | public void mouseClicked (MouseEvent e) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | public void mouseEntered (MouseEvent e) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | public void mouseExited (MouseEvent e) |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | public void mousePressed (MouseEvent e) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | public void mouseReleased (MouseEvent e) |
| 37 | { |
| 38 | } |
| 39 | } |
Note:
See TracBrowser
for help on using the repository browser.
