Example usage for com.google.gwt.event.logical.shared HasBeforeSelectionHandlers fireEvent

List of usage examples for com.google.gwt.event.logical.shared HasBeforeSelectionHandlers fireEvent

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared HasBeforeSelectionHandlers fireEvent.

Prototype

void fireEvent(GwtEvent<?> event);

Source Link

Document

Fires the given event to the handlers listening to the event's type.

Usage

From source file:com.sencha.gxt.widget.core.client.event.CellBeforeSelectionEvent.java

License:sencha.com license

public static <T> CellBeforeSelectionEvent<T> fire(HasBeforeSelectionHandlers<T> handler, Context context,
        T item) {//from www.  j  a  v a 2  s  .  co  m
    CellBeforeSelectionEvent<T> event = new CellBeforeSelectionEvent<T>(context, item);
    handler.fireEvent(event);
    return event;
}