com.github.gwtbootstrap.client.ui.StackProgressBar 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.ProgressBarBase;
import com.github.gwtbootstrap.client.ui.constants.Constants;
/**
* Stack style ProgressBar
*
*
*
UiBinder Usage:
*
*
* {@code
*
*
*
*
*
* }
*
* @since 2.2.1.0
* @author ohashi keisuke
* @see ProgressBar
*
*/
public class StackProgressBar extends ProgressBarBase {
/**
* Create an empty StackProgressBar
*/
public StackProgressBar() {
super();
setStylePrimaryName(Constants.PROGRESS);
addStyleName(Constants.PROGRESS);
setColor(Color.DEFAULT);
}
/**
* Create an empty StackProgressBar with type
* @param style ProgressBar type
*/
public StackProgressBar(Style style) {
this();
setType(style);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy