- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 32 of file StatementSet.java.
◆ StatementSet() [1/2]
org.turro.financials.account.logic.StatementSet.StatementSet |
( |
| ) |
|
◆ StatementSet() [2/2]
org.turro.financials.account.logic.StatementSet.StatementSet |
( |
double |
initialDebit, |
|
|
double |
initialCredit, |
|
|
Collection<? extends StatementEntry > |
c |
|
) |
| |
Definition at line 43 of file StatementSet.java.
45 add(
new StatementFirst(initialDebit, initialCredit));
◆ addBank()
void org.turro.financials.account.logic.StatementSet.addBank |
( |
| ) |
|
Definition at line 115 of file StatementSet.java.
117 addAll(BankAccounts.getMovements(accountSearch, fromDate, toDate));
◆ getAccountSearch()
String org.turro.financials.account.logic.StatementSet.getAccountSearch |
( |
| ) |
|
◆ getFromDate()
Date org.turro.financials.account.logic.StatementSet.getFromDate |
( |
| ) |
|
◆ getToDate()
Date org.turro.financials.account.logic.StatementSet.getToDate |
( |
| ) |
|
◆ getValidated()
ValidatedStatus org.turro.financials.account.logic.StatementSet.getValidated |
( |
| ) |
|
◆ getView()
RegisterView org.turro.financials.account.logic.StatementSet.getView |
( |
| ) |
|
◆ next()
void org.turro.financials.account.logic.StatementSet.next |
( |
| ) |
|
Definition at line 95 of file StatementSet.java.
96 long millis = toDate.getTime() - fromDate.getTime();
97 fromDate.setTime(toDate.getTime());
98 toDate.setTime(fromDate.getTime() + millis);
◆ previous()
void org.turro.financials.account.logic.StatementSet.previous |
( |
| ) |
|
Definition at line 89 of file StatementSet.java.
90 long millis = toDate.getTime() - fromDate.getTime();
91 toDate.setTime(fromDate.getTime());
92 fromDate.setTime(toDate.getTime() - millis);
◆ refreshData()
void org.turro.financials.account.logic.StatementSet.refreshData |
( |
| ) |
|
Definition at line 101 of file StatementSet.java.
103 if(accountSearch ==
null)
return;
104 Dao dao =
new FinancialsPU();
105 StatementFirst sf =
new StatementFirst();
106 sf.setAccountSearch(accountSearch);
107 sf.setFromDate(fromDate);
◆ setAccountSearch()
void org.turro.financials.account.logic.StatementSet.setAccountSearch |
( |
String |
accountSearch | ) |
|
◆ setFromDate()
void org.turro.financials.account.logic.StatementSet.setFromDate |
( |
Date |
fromDate | ) |
|
◆ setToDate()
void org.turro.financials.account.logic.StatementSet.setToDate |
( |
Date |
toDate | ) |
|
◆ setValidated()
void org.turro.financials.account.logic.StatementSet.setValidated |
( |
ValidatedStatus |
validated | ) |
|
◆ setView()
void org.turro.financials.account.logic.StatementSet.setView |
( |
RegisterView |
view | ) |
|
The documentation for this class was generated from the following file: