home *** CD-ROM | disk | FTP | other *** search
/ PCMania 5 / Pcmania_Ep2_05_CD-01.iso / ARTICULOS / PROGRAMACION / Tallerdejava / Oyente.java < prev    next >
Encoding:
Java Source  |  2000-01-31  |  533 b   |  24 lines

  1. import java.awt.event.*;
  2.  
  3. public class Oyente implements ActionListener, MouseMotionListener
  4. {
  5.   public Oyente()
  6.   {
  7.   }
  8.  
  9.   public void actionPerformed ( ActionEvent e )
  10.   {
  11.     System.out.println("El boton ha sido pulsado!");
  12.   }
  13.  
  14.   public void mouseMoved ( MouseEvent e )
  15.   {
  16.     System.out.println("El raton se esta moviendo sobre el boton: x: " + e.getX() + " y: " + e.getY() );
  17.   }
  18.  
  19.   public void mouseDragged ( MouseEvent e )
  20.   {
  21.     System.out.println("El raton se esta moviendo sobre el boton");
  22.   }
  23.  
  24. }