◆ ModelEntry()
org.turro.financials.treasury.m111.ModelEntry.ModelEntry |
( |
ModelSet |
set, |
|
|
ModelType |
type, |
|
|
double |
perCent |
|
) |
| |
◆ addValue()
void org.turro.financials.treasury.m111.ModelEntry.addValue |
( |
long |
contractId, |
|
|
String |
contractName, |
|
|
long |
documentId, |
|
|
double |
retention, |
|
|
double |
taxable |
|
) |
| |
Definition at line 76 of file m111/ModelEntry.java.
77 EntryContract ec = contracts.get(contractId);
79 ec =
new EntryContract(contractId, contractName);
80 contracts.put(contractId, ec);
82 ec.addDocument(documentId, retention, taxable);
◆ compareTo()
int org.turro.financials.treasury.m111.ModelEntry.compareTo |
( |
ModelEntry |
o | ) |
|
Definition at line 87 of file m111/ModelEntry.java.
88 int result = CompareUtil.compare(type.
getOrder(), o.type.getOrder());
90 result = CompareUtil.compare(perCent, o.perCent);
◆ getContracts()
Map<Long, EntryContract> org.turro.financials.treasury.m111.ModelEntry.getContracts |
( |
| ) |
|
◆ getDao()
Dao org.turro.financials.treasury.m111.ModelEntry.getDao |
( |
| ) |
|
◆ getPerCent()
double org.turro.financials.treasury.m111.ModelEntry.getPerCent |
( |
| ) |
|
◆ getRetention()
double org.turro.financials.treasury.m111.ModelEntry.getRetention |
( |
| ) |
|
Definition at line 64 of file m111/ModelEntry.java.
66 for(EntryContract ec : contracts.values()) {
67 total += ec.getRetention();
◆ getTaxable()
double org.turro.financials.treasury.m111.ModelEntry.getTaxable |
( |
| ) |
|
Definition at line 47 of file m111/ModelEntry.java.
49 for(EntryContract ec : contracts.values()) {
50 total += ec.getTaxable();
◆ getType()
ModelType org.turro.financials.treasury.m111.ModelEntry.getType |
( |
| ) |
|
The documentation for this class was generated from the following file: