Example usage for com.google.gwt.event.dom.client ChangeEvent subclass-usage

List of usage examples for com.google.gwt.event.dom.client ChangeEvent subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client ChangeEvent subclass-usage.

Usage

From source file eu.nextstreet.gwt.components.client.ui.widget.suggest.SuggestChangeEvent.java

/**
 * Represents a suggest box specific event change specifying if the value was
 * typed of selected and giving the type save selected value
 * 
 * @author Zied Hamdi founder of http://1vu.fr founder of http://into-i.fr
 * 

From source file geogebra.web.gui.advanced.client.ui.widget.combo.ComboBoxChangeEvent.java

/**
 * This event extends the standard <code>ChangeEvent</code> class to provide more information about how
 * the event was produced.<p/>
 * It's fired by the {@link org.gwt.advanced.client.ui.widget.ComboBox} and subclasses.
 * 
 * @author <a href="mailto:sskladchikov@gmail.com">Sergey Skladchikov</a>

From source file org.geogebra.web.web.gui.advanced.client.ui.widget.combo.ComboBoxChangeEvent.java

/**
 * This event extends the standard <code>ChangeEvent</code> class to provide more information about how
 * the event was produced.<p/>
 * It's fired by the {@link org.gwt.advanced.client.ui.widget.ComboBox} and subclasses.
 * 
 * @author <a href="mailto:sskladchikov@gmail.com">Sergey Skladchikov</a>

From source file org.jboss.errai.widgets.client.listeners.CellChangeEvent.java

public class CellChangeEvent extends ChangeEvent {
    private WSGrid.WSCell cell;
    private Object newValue;

    public CellChangeEvent(WSGrid.WSCell cell, Object newValue) {
        this.cell = cell;