Example usage for com.google.gwt.event.dom.client HasClickHandlers fireEvent

List of usage examples for com.google.gwt.event.dom.client HasClickHandlers fireEvent

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client HasClickHandlers 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.tasktop.c2c.server.common.web.client.view.CompositeClickHandlers.java

License:Open Source License

@Override
public void fireEvent(GwtEvent<?> event) {
    for (HasClickHandlers h : handlers) {
        h.fireEvent(event);
    }
}