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

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

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared HasSelectionHandlers 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.CellSelectionEvent.java

License:sencha.com license

public static <T> CellSelectionEvent<T> fire(HasSelectionHandlers<T> handler, Context context, T item) {
    CellSelectionEvent<T> event = new CellSelectionEvent<T>(context, item);
    handler.fireEvent(event);
    return event;
}