JDK-4713930 : Swing: setMultiClickThreshhold issue, related to bug 4367718
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 1.4.1
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: generic
  • CPU: generic
  • Submitted: 2002-07-12
  • Updated: 2003-09-26
  • Resolved: 2003-09-26
Related Reports
Duplicate :  
Relates :  
Description

Name: dk106046			Date: 07/12/2002

java version "1.4.0_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0_01-b03)
Java HotSpot(TM) Client VM (build 1.4.0_01-b03, mixed mode)

and

java version "1.4.1-rc"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-rc-b15)
Java HotSpot(TM) Client VM (build 1.4.1-rc-b15, mixed mode)
 


------------
As in bug 4367718, API calls AbstractButton.setMultiClickThreshhold()
and getMultiClickThreshhold() were added in 1.4 to solve problems
with multiple dialogs when only one is desired. This works okay for
mouse clicks, but exactly the same problem still exists for rapid
presses of the activate key, such as the Spacebar.

This can be fixed in BasicButtonListener by repeating the
logic added to the mousePressed and mouseReleased methods
in the PressedAction and ReleasedAction inner classes,
respectively.

Steps to reproduce:
1. Change into the directory %JAVA_HOME%/demo/jfc/SwingSet2 
2. Launch the demo : java -jar SwingSet2.jar
3. Wait for the demo to load.
4. Select the 'JOptionPane demo' (eigth along from the left) (in fact, any of the buttons)
5. Click the 'Show Warning Dialog' button to open the Dialog box, and then select the 'OK' button to close it. 
6. The current focus remains on the 'Show Warning Dialog' button, so I can press 'space' to simulate a click of the button, and display the Warning Diaglog box.
7. Now, continue pressing 'space' to display/close the Warning Dialog Box. After about 5 iterations, an empty dialog box is displayed without an option to close the window. The 'X' in the top right hand corner of the Dialog box does not work. 
8. The demo is now unuseable and the java process has to be killed.

This may only be reproducable on slower machines.

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

Comments
EVALUATION This is definitely worthy of further investigation. ###@###.### 2002-08-05 Name: ibR10256 Date: 09/26/2003 The problem itself is VERY hard to reproduce. I tried to reproduce it and found that it's easy to do in 1.4 and really hard in tiger. The only several times I could reproduce it in 1.5 (with the help of a Robot pressing a button multiple times without any delay) the timestamps of the ActionEvents of the button presses were the same! I think the rather recent (it is dated 03/04/21) AWT's fix for 4799136 (Synopsis: Type-ahead not queueing/working properly) made the problem so difficult to appear. Now the events which come after one which leads to a Dialog.show() invocation are not dispatched until the focus is transferred to the dialog (in case if the opening dialog is modal). So I close this bug as a duplicate of 4799136 because it has been fixed as a result of 4799136. ###@###.### 2003-09-26 ======================================================================
26-09-2003