List of usage examples for com.vaadin.ui Link addStyleName
@Override public void addStyleName(String style)
From source file:org.vaadin.tori.component.RecentBar.java
License:Apache License
private void addRecentLink(final HorizontalLayout barLayout) { Link link = new Link("Recent Posts", new ExternalResource("#" + ToriNavigator.ApplicationView.CATEGORIES.getUrl() + "/" + SpecialCategory.RECENT_POSTS.getId().toLowerCase())); link.addStyleName("recentlink"); barLayout.addComponent(link);//from ww w . j a va 2s . c om barLayout.setComponentAlignment(link, Alignment.MIDDLE_RIGHT); }