- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 30 of file ContractItem.java.
◆ ContractItem()
org.turro.financials.operating.ContractItem.ContractItem |
( |
long |
id | ) |
|
◆ compareTo()
int org.turro.financials.operating.ContractItem.compareTo |
( |
ContractItem |
o | ) |
|
◆ getId()
long org.turro.financials.operating.ContractItem.getId |
( |
| ) |
|
◆ getMonths()
MonthItemSet org.turro.financials.operating.ContractItem.getMonths |
( |
| ) |
|
◆ getName()
String org.turro.financials.operating.ContractItem.getName |
( |
| ) |
|
◆ getParticipants()
ParticipantSet org.turro.financials.operating.ContractItem.getParticipants |
( |
| ) |
|
Definition at line 75 of file ContractItem.java.
76 ParticipantSet values =
new ParticipantSet();
78 for(ValueItem vi : mi.getMovements().getParticipants()) {
79 ValueItem acum = values.getItem(vi.getMajor());
80 acum.setName(vi.getName());
81 acum.setValue(acum.getValue() + vi.getValue());
◆ getValues()
ValuesSet org.turro.financials.operating.ContractItem.getValues |
( |
| ) |
|
Definition at line 63 of file ContractItem.java.
64 ValuesSet values =
new ValuesSet();
66 for(ValueItem vi : mi.getMovements().getValues()) {
67 ValueItem acum = values.getItem(vi.getMajor());
68 acum.setName(vi.getName());
69 acum.setValue(acum.getValue() + vi.getValue());
◆ setName()
void org.turro.financials.operating.ContractItem.setName |
( |
String |
name | ) |
|
Definition at line 48 of file ContractItem.java.
50 Dao dao =
new FinancialsPU();
51 Contract c = dao.find(Contract.class,
id);
53 name = c.getPartialDescription();
The documentation for this class was generated from the following file: