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

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

Introduction

In this page you can find the example usage for com.google.gwt.view.client RangeChangeEvent 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 addRangeChangeHandler(Handler handler) {
    return eventBus.addHandlerToSource(RangeChangeEvent.getType(), this, handler);
}