BrightSide Workbench Full Report + Source Code
CompaniesComposer.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2015 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.financials.business;
20 
21 import org.turro.elephant.context.Application;
22 import org.turro.financials.db.FinancialsPU;
23 import org.turro.financials.entity.Company;
24 import org.turro.jpa.composer.EntityComposer;
25 import org.turro.jpa.entity.DaoEntity;
26 import org.turro.zul.frame.Framework;
27 import org.zkoss.zk.ui.Component;
28 
33 public class CompaniesComposer extends EntityComposer<Company, Long> {
34 
35  @Override
36  protected String getAttributeName() {
37  return "company";
38  }
39 
40  @Override
41  protected Company getEntityInstance(Long id) {
42  return new FinancialsPU().find(Company.class, 1L);
43  }
44 
45  @Override
46  protected DaoEntity getWrapperInstance(Component comp) {
48  w.setEntity(entity);
49  Framework.getCurrent().setSelectedLabel(w.getTabLabel());
50  Framework.getCurrent().setSelectedTooltiptext(w.getTooltiptext());
51  return w;
52  }
53 
54  @Override
55  protected boolean beforeDelete() {
56  return false;
57  }
58 
59  @Override
60  protected boolean shouldBeSaved() {
61  return true || super.shouldBeSaved();
62  }
63 
64  @Override
65  protected boolean inSaveRole() {
66  return Application.getApplication().isInRole("finan-company:edit");
67  }
68 
69  @Override
70  protected boolean inDeleteRole() {
71  return false;
72  }
73 
74  @Override
75  protected boolean hasChanged() {
76  // avoid xmlseralizer
77  return true;
78  }
79 
80  @Override
81  protected void retrieveEntity() {
82  // avoid xmlseralizer and attribute
84  }
85 
86 }
static Framework getCurrent()
Definition: Framework.java:203
void setSelectedLabel(String text)
Definition: Framework.java:103
void setSelectedTooltiptext(String text)
Definition: Framework.java:107