Java com.google.gwt.event.logical.shared ValueChangeEvent fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.event.logical.shared ValueChangeEvent fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.event.logical.shared ValueChangeEvent.

The text is from its open source code.

Subclass

com.google.gwt.event.logical.shared.ValueChangeEvent has subclasses.
Click this link to see all its subclasses.

Constructor

ValueChangeEvent(T value)
Creates a value change event.

Method

voidfire(HasValueChangeHandlers source, T value)
Fires a value change event on all registered handlers in the handler manager.
voidfireIfNotEqual(HasValueChangeHandlers source, T oldValue, T newValue)
Fires value change event if the old value is not equal to the new value.
Type>getType()
Gets the type associated with this event.
TgetValue()
Gets the value.
booleanshouldFire(HasValueChangeHandlers source, T oldValue, T newValue)
Convenience method to allow subtypes to know when they should fire a value change event in a null-safe manner.