Example usage for com.google.gwt.view.client RowCountChangeEvent getType

List of usage examples for com.google.gwt.view.client RowCountChangeEvent getType

Introduction

In this page you can find the example usage for com.google.gwt.view.client RowCountChangeEvent getType.

Prototype

public static Type<Handler> getType() 

Source Link

Document

Gets the type associated with this event.

Usage

From source file:com.kk_electronic.kkportal.core.ui.TabDisplay.java

License:Open Source License

@Override
public HandlerRegistration addRowCountChangeHandler(
        com.google.gwt.view.client.RowCountChangeEvent.Handler handler) {
    return eventBus.addHandlerToSource(RowCountChangeEvent.getType(), this, handler);
}