com.github.gwtbootstrap.client.ui.Lead 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.constants.Constants;
/**
* Lead
*
* @since 2.2.1.0
* @author ohashi keisuke
*
*/
public class Lead extends Paragraph {
public Lead() {
this("");
}
public Lead(String html) {
super();
addStyleName(Constants.LEAD);
}
}