Example usage for com.vaadin.ui.themes ValoTheme LINK_LARGE

List of usage examples for com.vaadin.ui.themes ValoTheme LINK_LARGE

Introduction

In this page you can find the example usage for com.vaadin.ui.themes ValoTheme LINK_LARGE.

Prototype

String LINK_LARGE

To view the source code for com.vaadin.ui.themes ValoTheme LINK_LARGE.

Click Source Link

Document

Large size link.

Usage

From source file:com.constellio.app.ui.pages.base.MainLayoutImpl.java

protected Component buildFooter() {

    Link poweredByConstellioLink = new Link(
            $("MainLayout.footerAlt") + "  (" + presenter.getCurrentVersion() + ")",
            new ExternalResource("http://www.constellio.com"));
    poweredByConstellioLink.setTargetName("_blank");
    poweredByConstellioLink.addStyleName(ValoTheme.LINK_LARGE);
    poweredByConstellioLink.addStyleName("footer");
    return poweredByConstellioLink;
}