Example usage for com.google.gwt.user.client DOM createCol

List of usage examples for com.google.gwt.user.client DOM createCol

Introduction

In this page you can find the example usage for com.google.gwt.user.client DOM createCol.

Prototype

public static Element createCol() 

Source Link

Document

Creates an HTML COL element.

Usage

From source file:org.mcarthur.sandy.gwt.table.client.TableCol.java

License:Apache License

public TableCol() {
    super(DOM.createCol());
    addStyleName(Constants.GWTSTUFF + "-TableCol");
}