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

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

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