18 package org.turro.financials.model.register;
20 import org.turro.financials.entity.RegisterEntry;
21 import org.turro.util.CompareUtil;
30 private double balance;
41 this.balance = balance;
90 if (getClass() != obj.getClass()) {
94 if(this.entry != other.entry && (
this.entry ==
null || !(
this.entry.getId() == other.entry.
getId()))) {
103 hash = 37 * hash + (this.entry !=
null ? this.entry.hashCode() : 0);
EntryWrapper(RegisterEntry entry)
void setEntry(RegisterEntry entry)
int compareTo(EntryWrapper o)
void setBalance(double balance)
boolean entryEquals(RegisterEntry re)
boolean equals(Object obj)
double getSingleBalance()