source: trunk/src/gcc/libjava/java/awt/event/MouseAdapter.java@ 154

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: 702 bytes
Line 
1/* Copyright (C) 2000 Free Software Foundation
2
3 This file is part of libjava.
4
5This software is copyrighted work licensed under the terms of the
6Libjava License. Please consult the file "LIBJAVA_LICENSE" for
7details. */
8
9package 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
18public 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.