BrightSide Workbench Full Report + Source Code
org.turro.financials.account.logic.BankEntry Class Reference
Inheritance diagram for org.turro.financials.account.logic.BankEntry:
Collaboration diagram for org.turro.financials.account.logic.BankEntry:

Public Member Functions

 BankEntry (BankAccount account)
 
String getId ()
 
String getAccount ()
 
double getBalance ()
 
double getCredit ()
 
double getDebit ()
 
Date getDate ()
 
String getDescription ()
 
String getConcept ()
 
RegisterView getView ()
 
long getOrder ()
 
- Public Member Functions inherited from org.turro.financials.account.logic.StatementEntry
 StatementEntry (RegisterEntry entry)
 
RegisterEntry getEntry ()
 
Register getRegister ()
 
Document getDocument ()
 
void setInheritedBalance (double inheritedBalance)
 
boolean isConciliated ()
 
void setConciliated (boolean value)
 
boolean isBank ()
 
int compareTo (StatementEntry o)
 

Additional Inherited Members

- Protected Attributes inherited from org.turro.financials.account.logic.StatementEntry
double balance
 
RegisterEntry entry
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file BankEntry.java.

Constructor & Destructor Documentation

◆ BankEntry()

org.turro.financials.account.logic.BankEntry.BankEntry ( BankAccount  account)

Definition at line 34 of file BankEntry.java.

34  {
35  super(null);
36  this.account = account;
37  }

Member Function Documentation

◆ getAccount()

String org.turro.financials.account.logic.BankEntry.getAccount ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 48 of file BankEntry.java.

48  {
49  return I_.get("Bank-" + account.getContract().getGlobalId());
50  }
Here is the call graph for this function:

◆ getBalance()

double org.turro.financials.account.logic.BankEntry.getBalance ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 53 of file BankEntry.java.

53  {
54  return account.getBalance();
55  }
Here is the call graph for this function:

◆ getConcept()

String org.turro.financials.account.logic.BankEntry.getConcept ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 78 of file BankEntry.java.

78  {
79  return null;
80  }

◆ getCredit()

double org.turro.financials.account.logic.BankEntry.getCredit ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 58 of file BankEntry.java.

58  {
59  return account.getCredit();
60  }
Here is the call graph for this function:

◆ getDate()

Date org.turro.financials.account.logic.BankEntry.getDate ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 68 of file BankEntry.java.

68  {
69  return account.getTransactionDate();
70  }
Here is the call graph for this function:

◆ getDebit()

double org.turro.financials.account.logic.BankEntry.getDebit ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 63 of file BankEntry.java.

63  {
64  return account.getDebit();
65  }
Here is the call graph for this function:

◆ getDescription()

String org.turro.financials.account.logic.BankEntry.getDescription ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 73 of file BankEntry.java.

73  {
74  return account.getConcept();
75  }
Here is the call graph for this function:

◆ getId()

String org.turro.financials.account.logic.BankEntry.getId ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 40 of file BankEntry.java.

40  {
41  if(account != null) {
42  return "55" + account.getId();
43  }
44  return null;
45  }
Here is the call graph for this function:

◆ getOrder()

long org.turro.financials.account.logic.BankEntry.getOrder ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 88 of file BankEntry.java.

88  {
89  return account.getRegisterOrder();
90  }
Here is the call graph for this function:

◆ getView()

RegisterView org.turro.financials.account.logic.BankEntry.getView ( )

Reimplemented from org.turro.financials.account.logic.StatementEntry.

Definition at line 83 of file BankEntry.java.

83  {
84  return null;
85  }

The documentation for this class was generated from the following file: