- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 27 of file EntryWrapper.java.
◆ EntryWrapper()
org.turro.financials.model.register.EntryWrapper.EntryWrapper |
( |
RegisterEntry |
entry | ) |
|
◆ compareTo()
int org.turro.financials.model.register.EntryWrapper.compareTo |
( |
EntryWrapper |
o | ) |
|
Definition at line 65 of file EntryWrapper.java.
67 if(entry.
getAccount() !=
null && o.getEntry().getAccount() !=
null) {
68 result = entry.
getAccount().
getId().compareTo(o.getEntry().getAccount().getId());
71 result = CompareUtil.compare(entry.
getConcept(), o.getEntry().getConcept());
74 result = CompareUtil.compare(entry.
getDebit(), o.getEntry().getDebit());
77 result = CompareUtil.compare(entry.
getCredit(), o.getEntry().getCredit());
80 result = CompareUtil.compare(entry.
getId(), o.getEntry().getId());
◆ entryEquals()
boolean org.turro.financials.model.register.EntryWrapper.entryEquals |
( |
RegisterEntry |
re | ) |
|
◆ equals()
boolean org.turro.financials.model.register.EntryWrapper.equals |
( |
Object |
obj | ) |
|
Definition at line 86 of file EntryWrapper.java.
90 if (getClass() != obj.getClass()) {
94 if(this.entry != other.entry && (
this.entry ==
null || !(
this.entry.getId() == other.entry.getId()))) {
EntryWrapper(RegisterEntry entry)
◆ getBalance()
double org.turro.financials.model.register.EntryWrapper.getBalance |
( |
| ) |
|
◆ getEntry()
RegisterEntry org.turro.financials.model.register.EntryWrapper.getEntry |
( |
| ) |
|
◆ getSingleBalance()
double org.turro.financials.model.register.EntryWrapper.getSingleBalance |
( |
| ) |
|
◆ hashCode()
int org.turro.financials.model.register.EntryWrapper.hashCode |
( |
| ) |
|
Definition at line 101 of file EntryWrapper.java.
103 hash = 37 * hash + (this.entry !=
null ? this.entry.hashCode() : 0);
◆ setBalance()
void org.turro.financials.model.register.EntryWrapper.setBalance |
( |
double |
balance | ) |
|
◆ setEntry()
void org.turro.financials.model.register.EntryWrapper.setEntry |
( |
RegisterEntry |
entry | ) |
|
The documentation for this class was generated from the following file: