com.github.gwtbootstrap.client.ui.Thumbnails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-bootstrap Show documentation
Show all versions of gwt-bootstrap Show documentation
A GWT Library that provides the widgets of Twitter Bootstrap.
package com.github.gwtbootstrap.client.ui;
import com.github.gwtbootstrap.client.ui.base.UnorderedList;
import com.github.gwtbootstrap.client.ui.constants.Constants;
/**
* The thumbnails widget.
*
*
*
UiBinder Usage:
*
*
* {@code
*
*
*
* Twitter Bootstrap Documentation
*/
public class Thumbnails extends UnorderedList {
/**
* Create an empty widget
*/
public Thumbnails() {
super();
setStyleName(Constants.THUMBNAILS);
}
}