Example usage for com.google.gwt.user.cellview.client Header getCell

List of usage examples for com.google.gwt.user.cellview.client Header getCell

Introduction

In this page you can find the example usage for com.google.gwt.user.cellview.client Header getCell.

Prototype

public Cell<H> getCell() 

Source Link

Document

Return the Cell responsible for rendering items in the header.

Usage

From source file:org.kaaproject.avro.ui.gwt.client.widget.grid.AvroUiDataGrid.java

License:Apache License

private <C> boolean resetFocusOnFilterCellImpl(Context context, Header<C> header, Element cellParent) {
    C headerValue = header.getValue();//from ww w.ja  v a2 s.c  o m
    Cell<C> cell = header.getCell();
    return cell.resetFocus(context, cellParent, headerValue);
}