Example usage for com.google.gwt.cell.client CheckboxCell CheckboxCell

List of usage examples for com.google.gwt.cell.client CheckboxCell CheckboxCell

Introduction

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

Prototype

@Deprecated
public CheckboxCell(boolean isSelectBox) 

Source Link

Document

Construct a new CheckboxCell that optionally controls selection.

Usage

From source file:org.drools.guvnor.client.table.SelectionColumn.java

License:Apache License

public SelectionColumn(CellTable<T> cellTable) {
    super(new CheckboxCell(true));
    this.cellTable = cellTable;
    addUpdater();
}