Java tutorial
/** * This file is part of mycollab-web-community. * * mycollab-web-community is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * mycollab-web-community is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with mycollab-web-community. If not, see <http://www.gnu.org/licenses/>. */ package com.esofthead.mycollab.community.module.project.view.client; import com.esofthead.mycollab.module.project.view.ProjectModule; import com.esofthead.mycollab.module.project.view.client.IClientContainer; import com.esofthead.mycollab.module.project.view.client.IClientPresenter; import com.esofthead.mycollab.vaadin.mvp.ScreenData; import com.esofthead.mycollab.vaadin.web.ui.AbstractPresenter; import com.vaadin.ui.Alignment; import com.vaadin.ui.ComponentContainer; /** * @author MyCollab Ltd * @since 5.2.9 */ public class ClientPresenter extends AbstractPresenter<IClientContainer> implements IClientPresenter { public ClientPresenter() { super(IClientContainer.class); } @Override protected void onGo(ComponentContainer container, ScreenData<?> data) { ProjectModule prjContainer = (ProjectModule) container; prjContainer.removeAllComponents(); prjContainer.with(view).withAlign(view, Alignment.TOP_CENTER); } }