Example usage for com.vaadin.server FontAwesome CIRCLE

List of usage examples for com.vaadin.server FontAwesome CIRCLE

Introduction

In this page you can find the example usage for com.vaadin.server FontAwesome CIRCLE.

Prototype

FontAwesome CIRCLE

To view the source code for com.vaadin.server FontAwesome CIRCLE.

Click Source Link

Usage

From source file:org.eclipse.hawkbit.ui.common.filterlayout.AbstractFilterButtons.java

License:Open Source License

private static String prepareFilterButtonCaption(final String name, final String color) {
    final StringBuilder caption = new StringBuilder();
    caption.append("<span style=\"color: ").append(color).append(" !important;\">");
    caption.append(FontAwesome.CIRCLE.getHtml());
    caption.append("</span> ");
    caption.append(name);//from   w ww  . ja v a2s  .  c  o  m
    return caption.toString();
}