API Reference 0.3.24dart_web_toolkit_eventBlurHandlerAdapter

BlurHandlerAdapter class

Handler interface for {@link BlurEvent} events.

class BlurHandlerAdapter extends EventHandlerAdapter implements BlurHandler {

 BlurHandlerAdapter(EventHandlerAdapterCallback callback) : super(callback);

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

Extends

EventHandlerAdapter > BlurHandlerAdapter

Implements

BlurHandler

Constructors

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

Properties

EventHandlerAdapterCallback callback #

inherited from EventHandlerAdapter
EventHandlerAdapterCallback callback

Methods

void onBlur(BlurEvent event) #

Called when BlurEvent is fired.

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

void onBlur(BlurEvent event) {
 callback(event);
}