Example usage for com.google.gwt.view.client HasRows interface-usage

List of usage examples for com.google.gwt.view.client HasRows interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.view.client HasRows interface-usage.

Usage

From source file gwt.material.design.client.data.DataView.java

/**
 * A data view is in charge of rendering the data within the data table.
 *
 * @author Ben Dol
 */
public interface DataView<T> extends HasRows<T>, HasColumns<T>, HasDataSource<T>, HasRenderer<T>, HasKeyProvider<T>,

From source file stroom.data.grid.client.DataGridView.java

public interface DataGridView<R> extends View, HasRows {
    void addColumn(Column<R, ?> column, String name, int width);

    void addColumn(Column<R, ?> column, String name);

    void addColumn(Column<R, ?> column, Header<?> header, int width);