Mouse event interpretation is different in AWT classes JDK 1.0.2 for Windows 95.
For a single click, all four convenience methods were getting invoked in this order:
mouseDown(), mouseDrag(), mouseUp(), and mouseMove()
The mouse was not moved during the click, as verified by the coordinates.
For a single click on the mouse on Solaris 2.5 SPARC, the AWT will generate two events:
mouseDown(), and mouseUp()
For a single click, all four convenience methods were getting invoked in this order:
mouseDown(), mouseDrag(), mouseUp(), and mouseMove()
The mouse was not moved during the click, as verified by the coordinates.
For a single click on the mouse on Solaris 2.5 SPARC, the AWT will generate two events:
mouseDown(), and mouseUp()