Example usage for com.google.gwt.cell.client AbstractCell getConsumedEvents

List of usage examples for com.google.gwt.cell.client AbstractCell getConsumedEvents

Introduction

In this page you can find the example usage for com.google.gwt.cell.client AbstractCell getConsumedEvents.

Prototype

public Set<String> getConsumedEvents() 

Source Link

Usage

From source file:org.drools.guvnor.client.widgets.decoratedgrid.DecoratedGridCellValueAdaptor.java

License:Apache License

/**
 * @param cell//from  w w w.  j  av a 2s . com
 */
public DecoratedGridCellValueAdaptor(AbstractCell<T> cell) {
    super(cell.getConsumedEvents());
    this.cell = cell;
}

From source file:org.drools.guvnor.client.widgets.drools.decoratedgrid.DecoratedGridCellValueAdaptor.java

License:Apache License

/**
 * @param cell//www.  j a va 2  s  .  c om
 */
public DecoratedGridCellValueAdaptor(AbstractCell<T> cell, EventBus eventBus) {
    super(cell.getConsumedEvents());
    this.eventBus = eventBus;
    this.cell = cell;
}