com.github.gwtbootstrap.client.ui.Caption 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.
The newest version!
package com.github.gwtbootstrap.client.ui;
import com.github.gwtbootstrap.client.ui.base.HtmlWidget;
import com.github.gwtbootstrap.client.ui.constants.Constants;
public class Caption extends HtmlWidget {
/**
* Creates an empty paragraph.
*/
public Caption() {
this("");
}
/**
* Creates a widget with the html set..
* @param html content html
*/
public Caption(String html) {
this("div", html);
}
protected Caption(String tag,String html) {
super(tag , html);
setStyleName(Constants.CAPTION);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy