API Reference 0.3.24dart_web_toolkit_eventMouseUpHandlerAdapter

MouseUpHandlerAdapter class

Handler interface for {@link MouseUpEvent} events.

class MouseUpHandlerAdapter extends EventHandlerAdapter implements MouseUpHandler {

 MouseUpHandlerAdapter(EventHandlerAdapterCallback callback) : super(callback);

 /**
  * Called when MouseUpEvent is fired.
  *
  * @param event the {@link MouseUpEvent} that was fired
  */
 void onMouseUp(MouseUpEvent event) {
   callback(event);
 }

}

Extends

EventHandlerAdapter > MouseUpHandlerAdapter

Implements

MouseUpHandler

Constructors

new MouseUpHandlerAdapter(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
MouseUpHandlerAdapter(EventHandlerAdapterCallback callback) : super(callback);

Properties

EventHandlerAdapterCallback callback #

inherited from EventHandlerAdapter
EventHandlerAdapterCallback callback

Methods

void onMouseUp(MouseUpEvent event) #

Called when MouseUpEvent is fired.

@param event the {@link MouseUpEvent} that was fired

void onMouseUp(MouseUpEvent event) {
 callback(event);
}