All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.gwtbootstrap.client.ui.Caption Maven / Gradle / Ivy

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