MouseEventHandler
for double-click events. There are two different way to implement a DoubleClickHandler
:
Runnable
to the constructor. The Runnable
's {@link Runnable#run()} method is called when the double-click is detected;MouseEvent
is passed to the handleImpl
method, which can decide if the event should be handled or not.
@author Torgil
|
|
|
|
|
|
|
|