Example usage for com.vaadin.server FontAwesome GAVEL

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

Introduction

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

Prototype

FontAwesome GAVEL

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

Click Source Link

Usage

From source file:org.eclipse.hawkbit.ui.rollout.rollout.RolloutListGrid.java

License:Open Source License

private StatusFontIcon createApprovalButtonMetadata(final RolloutStatus rolloutStatus) {
    final boolean isDisabled = hasToBeDisabled(rolloutStatus, APPROVE_BUTTON_ENABLED);
    return new StatusFontIcon(FontAwesome.GAVEL, null,
            i18n.getMessage(UIMessageIdProvider.TOOLTIP_ROLLOUT_APPROVE),
            UIComponentIdProvider.ROLLOUT_APPROVAL_BUTTON_ID, isDisabled);
}