Example usage for com.google.gwt.widgetideas.table.client.overrides HTMLTable setBorderWidth

List of usage examples for com.google.gwt.widgetideas.table.client.overrides HTMLTable setBorderWidth

Introduction

In this page you can find the example usage for com.google.gwt.widgetideas.table.client.overrides HTMLTable setBorderWidth.

Prototype

public void setBorderWidth(int width) 

Source Link

Document

Sets the width of the table's border.

Usage

From source file:com.google.gwt.demos.bulkloadingtable.client.BulkLoadingTableDemo.java

License:Apache License

private void finishTable(final HTMLTable table, final long milli) {

    // In order to compare apples-to-apples for rendering time letting event cue
    // flush once.

    curTable = table;/*from w w w.  ja  v  a  2 s  .  com*/
    table.setBorderWidth(2);
    panel.add(table);

    table.setWidget(0, 3, new Button("A widget"));
    log("Finished in " + (System.currentTimeMillis() - milli) + " milliseconds");
}