List of usage examples for com.vaadin.ui ProgressBar addStyleName
@Override public void addStyleName(String style)
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; }