Example usage for com.vaadin.server FontAwesome PAGELINES

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

Introduction

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

Prototype

FontAwesome PAGELINES

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

Click Source Link

Usage

From source file:lifetime.component.user.YellowPagesButton.java

License:Apache License

public YellowPagesButton(String language) {
    super("Yellow Pages", language, FontAwesome.PAGELINES);
    addClickListener(new ClickListener() {

        @Override//  w w  w  . j a  va  2 s  .  c o  m
        public void buttonClick(ClickEvent event) {
            getUI().getNavigator().navigateTo(Navigation.YELLOW_PAGES_VIEW.getName());
        }
    });
}