Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4274839

Regression: List doesn't receive MOUSE_ENTERED/MOUSE_EXITED events

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.3.0
    • 1.3.0
    • client-libs
    • kestrel
    • x86
    • windows_nt



      Name: dsC76792 Date: 09/23/99

      ###@###.###

      The following test case demonstrates that MOUSE_ENTERED/MOUSE_EXITED
      aren't generated for List on Win32:

      import java.awt.*;
      import java.awt.event.*;

      public class MouseEnterTest extends MouseAdapter {

          public static void main(String[] args) {
              Frame frame = new Frame("MouseEnterTest");
      MouseListener mouseListener = new MouseEnterTest();

              List list = new List();
              list.add("Item1");
              list.add("Item2");
              list.addMouseListener(mouseListener);

              frame.add(list);
              frame.addWindowListener(new WindowAdapter() {
                  public void windowClosing(WindowEvent e) {
                      System.exit(0);
                  }
              });
              frame.pack();
              frame.setVisible(true);
          }

          public void mouseEntered(MouseEvent e) {
              System.err.println(e);
          }

          public void mouseExited(MouseEvent e) {
              System.err.println(e);
          }
      }

      The problem was introduced with the fix for bugs 4201967/4218746.

      ======================================================================

            dassunw Das Das (Inactive)
            dassunw Das Das (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: