/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.web.organizer.ui; import com.vaadin.ui.Label; /** * * @author Gery */ public class ContactContent extends BaseContent { public ContactContent(){ Label contact = new Label("Contact info here!"); addComponent(contact); } }