MouseOutHandlerAdapter class
Handler interface for {@link MouseOutEvent} events.
class MouseOutHandlerAdapter extends EventHandlerAdapter implements MouseOutHandler {
 MouseOutHandlerAdapter(EventHandlerAdapterCallback callback) : super(callback);
 /**
  * Called when MouseOutEvent is fired.
  *
  * @param event the {@link MouseOutEvent} that was fired
  */
 void onMouseOut(MouseOutEvent event) {
   callback(event);
 }
}
Extends
EventHandlerAdapter > MouseOutHandlerAdapter
Implements
Constructors
new MouseOutHandlerAdapter(EventHandlerAdapterCallback callback) #
Properties
EventHandlerAdapterCallback callback #
inherited from EventHandlerAdapter 
EventHandlerAdapterCallback callback
Methods
void onMouseOut(MouseOutEvent event) #
Called when MouseOutEvent is fired.
@param event the {@link MouseOutEvent} that was fired
void onMouseOut(MouseOutEvent event) {
 callback(event);
}