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

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

Introduction

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

Prototype

@Override
    public void setStylePrimaryName(String style) 

Source Link

Usage

From source file:org.eclipse.hawkbit.ui.customrenderers.client.renderers.RolloutRenderer.java

License:Open Source License

@Override
public VButton createWidget() {
    VButton b = GWT.create(VButton.class);
    b.addClickHandler(this);
    b.setStylePrimaryName("v-nativebutton");
    return b;//from   w w w.  j  a  v  a2s  . c  o  m
}