Example usage for com.vaadin.client.ui VButton setStyleName

List of usage examples for com.vaadin.client.ui VButton setStyleName

Introduction

In this page you can find the example usage for com.vaadin.client.ui VButton setStyleName.

Prototype

@Override
    public void setStyleName(String style) 

Source Link

Usage

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"));
}