Example usage for com.vaadin.ui ProgressBar addStyleName

List of usage examples for com.vaadin.ui ProgressBar addStyleName

Introduction

In this page you can find the example usage for com.vaadin.ui ProgressBar addStyleName.

Prototype

@Override
    public void addStyleName(String style) 

Source Link

Usage

From source file:org.eclipse.hawkbit.ui.management.targettable.TargetBulkUpdateWindowLayout.java

License:Open Source License

private static ProgressBar creatreProgressBar() {
    final ProgressBar progressBarIndicator = new ProgressBar(0F);
    progressBarIndicator.addStyleName("bulk-upload-label");
    progressBarIndicator.setSizeFull();//from  www  .  j  a v  a  2s.co  m
    return progressBarIndicator;
}