public abstract void onBottomChange(Component component, Object existingValue, Object newValue, Object eOpts);
// Called from JSNI
private final void fireOnEvent(Component component, Object existingValue, Object newValue, Object eOpts) {
UncaughtExceptionHandler handler = GWT.getUncaughtExceptionHandler();
if (handler != null) {
fireOnEventAndCatch(component, existingValue, newValue, eOpts, handler);
} else {
onBottomChange(component, existingValue, newValue, eOpts);
}