List of usage examples for com.vaadin.server FontAwesome CIRCLE
FontAwesome CIRCLE
To view the source code for com.vaadin.server FontAwesome CIRCLE.
Click Source Link
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(); }