List of usage examples for com.google.gwt.cell.client AbstractCell getConsumedEvents
public Set<String> getConsumedEvents()
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; }