List of usage examples for com.vaadin.client.ui VButton setStyleName
@Override
public void setStyleName(String style)
From source file:org.eclipse.hawkbit.ui.customrenderers.client.renderers.RolloutRenderer.java
License:Open Source License
private void applystyle(VButton button) { button.setStyleName(VButton.CLASSNAME); button.addStyleName(getStyle("borderless")); button.addStyleName(getStyle("small")); button.addStyleName(getStyle("on-focus-no-border")); button.addStyleName(getStyle("link")); }