Java tutorial
/** * This file is part of mycollab-web. * * mycollab-web 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 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. If not, see <http://www.gnu.org/licenses/>. */ package com.esofthead.mycollab.module.crm.view.campaign; import java.util.Arrays; import com.esofthead.mycollab.module.crm.domain.SimpleAccount; import com.esofthead.mycollab.module.crm.domain.criteria.AccountSearchCriteria; import com.esofthead.mycollab.module.crm.ui.components.RelatedItemSelectionWindow; import com.esofthead.mycollab.module.crm.view.account.AccountSimpleSearchPanel; import com.esofthead.mycollab.module.crm.view.account.AccountTableDisplay; import com.esofthead.mycollab.module.crm.view.account.AccountTableFieldDef; import com.esofthead.mycollab.vaadin.events.SearchHandler; import com.esofthead.mycollab.vaadin.ui.UIConstants; import com.vaadin.ui.Button; /** * * @author MyCollab Ltd. * @since 1.0 */ public class CampaignAccountSelectionWindow extends RelatedItemSelectionWindow<SimpleAccount, AccountSearchCriteria> { private static final long serialVersionUID = 1L; public CampaignAccountSelectionWindow(CampaignAccountListComp associateAccountList) { super("Select Accounts", associateAccountList); this.setWidth("900px"); } @Override protected void initUI() { tableItem = new AccountTableDisplay(AccountTableFieldDef.selected, Arrays.asList(AccountTableFieldDef.accountname, AccountTableFieldDef.phoneoffice, AccountTableFieldDef.email, AccountTableFieldDef.city)); Button selectBtn = new Button("Select", new Button.ClickListener() { private static final long serialVersionUID = 1L; @Override public void buttonClick(Button.ClickEvent event) { close(); } }); selectBtn.setStyleName(UIConstants.THEME_GREEN_LINK); AccountSimpleSearchPanel accountSimpleSearchPanel = new AccountSimpleSearchPanel(); accountSimpleSearchPanel.addSearchHandler(new SearchHandler<AccountSearchCriteria>() { @Override public void onSearch(AccountSearchCriteria criteria) { tableItem.setSearchCriteria(criteria); } }); this.bodyContent.addComponent(accountSimpleSearchPanel); this.bodyContent.addComponent(selectBtn); this.bodyContent.addComponent(tableItem); } }