API Reference 0.3.24dart_web_toolkit_eventMouseOutHandlerAdapter

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

MouseOutHandler

Constructors

new MouseOutHandlerAdapter(EventHandlerAdapterCallback callback) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
MouseOutHandlerAdapter(EventHandlerAdapterCallback callback) : super(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);
}