com.google.gwt.event.dom.client
Class HandlesAllMouseEvents
java.lang.Object
com.google.gwt.event.dom.client.HandlesAllMouseEvents
- All Implemented Interfaces:
- MouseDownHandler, MouseMoveHandler, MouseOutHandler, MouseOverHandler, MouseUpHandler, MouseWheelHandler, EventHandler
public abstract class HandlesAllMouseEvents
- extends java.lang.Object
- implements MouseDownHandler, MouseUpHandler, MouseMoveHandler, MouseOutHandler, MouseOverHandler, MouseWheelHandler
Receiver used to handle all mouse events at once.
WARNING, PLEASE READ: As this class is intended for developers who wish to
handle all mouse events in GWT, new mouse handler interfaces will be added to
it. Therefore, updates to GWT could cause breaking API changes.
Method Summary |
void |
handle(HasAllMouseHandlers eventSource)
Convenience method to handle all mouse events from an event source. |
static
|
handle(HasAllMouseHandlers source,
H reciever)
Convenience method used to handle all mouse events from an event source. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HandlesAllMouseEvents
public HandlesAllMouseEvents()
- Constructor.
handle
public static <H extends MouseDownHandler & MouseUpHandler & MouseOutHandler & MouseOverHandler & MouseMoveHandler & MouseWheelHandler> void handle(HasAllMouseHandlers source,
H reciever)
- Convenience method used to handle all mouse events from an event source.
- Type Parameters:
H
- receiver type, must implement all mouse handlers- Parameters:
source
- the event sourcereciever
- the receiver implementing all mouse handlers
handle
public void handle(HasAllMouseHandlers eventSource)
- Convenience method to handle all mouse events from an event source.
- Parameters:
eventSource
- the event source