com.github.gwtbootstrap.client.ui.StackProgressBar Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy