/* * 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 ShareContent extends BaseContent { public ShareContent() { Label share = new Label("Share content"); addComponent(share); } }