-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.1.5
-
x86
-
windows_95
Name: diC59631 Date: 01/23/98
When you double-click on the TextArea displayed
by the following program, the reported click count
is 3 instead of 2.
JDK 1.1.4 correctly reported 2.
import java.awt.*;
import java.awt.event.*;
public class Click
{
public static void main(String[] args)
{
Frame f = new Frame();
f.setLayout(new BorderLayout());
TextArea t = new TextArea();
t.addMouseListener(new MouseListener());
f.add("Center",t);
f.pack();
f.show();
}
static class MouseListener extends MouseAdapter
{
public void mouseClicked(MouseEvent e)
{
System.out.println("click "+e.getClickCount());
}
}
}
(Review ID: 23887)
======================================================================