home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-01-31 | 533 b | 24 lines |
- import java.awt.event.*;
-
- public class Oyente implements ActionListener, MouseMotionListener
- {
- public Oyente()
- {
- }
-
- public void actionPerformed ( ActionEvent e )
- {
- System.out.println("El boton ha sido pulsado!");
- }
-
- public void mouseMoved ( MouseEvent e )
- {
- System.out.println("El raton se esta moviendo sobre el boton: x: " + e.getX() + " y: " + e.getY() );
- }
-
- public void mouseDragged ( MouseEvent e )
- {
- System.out.println("El raton se esta moviendo sobre el boton");
- }
-
- }