X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=libjava%2Fjava%2Fawt%2Fevent%2FMouseAdapter.java;fp=libjava%2Fjava%2Fawt%2Fevent%2FMouseAdapter.java;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=651893857388e7cdfa10cf05cc9a7761f5fa6079;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/java/awt/event/MouseAdapter.java b/libjava/java/awt/event/MouseAdapter.java deleted file mode 100644 index 65189385..00000000 --- a/libjava/java/awt/event/MouseAdapter.java +++ /dev/null @@ -1,39 +0,0 @@ -/* Copyright (C) 2000 Free Software Foundation - - This file is part of libjava. - -This software is copyrighted work licensed under the terms of the -Libjava License. Please consult the file "LIBJAVA_LICENSE" for -details. */ - -package java.awt.event; - -/** - * @author Tom Tromey - * @date April 8, 2000 - */ - -/* Status: Believed complete and correct to JDK 1.2. */ - -public abstract class MouseAdapter implements MouseListener -{ - public void mouseClicked (MouseEvent e) - { - } - - public void mouseEntered (MouseEvent e) - { - } - - public void mouseExited (MouseEvent e) - { - } - - public void mousePressed (MouseEvent e) - { - } - - public void mouseReleased (MouseEvent e) - { - } -}