BrightSide Workbench Full Report + Source Code
org.turro.financials.entity.BankAccount Class Reference
Inheritance diagram for org.turro.financials.entity.BankAccount:
Collaboration diagram for org.turro.financials.entity.BankAccount:

Public Member Functions

long getId ()
 
void setId (long id)
 
Contract getContract ()
 
void setContract (Contract contract)
 
Date getTransactionDate ()
 
void setTransactionDate (Date transactionDate)
 
Date getValueDate ()
 
void setValueDate (Date valueDate)
 
String getConcept ()
 
void setConcept (String concept)
 
double getDebit ()
 
void setDebit (double debit)
 
double getCredit ()
 
void setCredit (double credit)
 
double getBalance ()
 
void setBalance (double balance)
 
long getRegisterOrder ()
 
void setRegisterOrder (long registerOrder)
 

Detailed Description

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

Definition at line 36 of file BankAccount.java.

Member Function Documentation

◆ getBalance()

double org.turro.financials.entity.BankAccount.getBalance ( )

Definition at line 116 of file BankAccount.java.

116  {
117  return balance;
118  }
Here is the caller graph for this function:

◆ getConcept()

String org.turro.financials.entity.BankAccount.getConcept ( )

Definition at line 92 of file BankAccount.java.

92  {
93  return concept;
94  }
Here is the caller graph for this function:

◆ getContract()

Contract org.turro.financials.entity.BankAccount.getContract ( )

Definition at line 68 of file BankAccount.java.

68  {
69  return contract;
70  }
Here is the caller graph for this function:

◆ getCredit()

double org.turro.financials.entity.BankAccount.getCredit ( )

Definition at line 108 of file BankAccount.java.

108  {
109  return credit;
110  }
Here is the caller graph for this function:

◆ getDebit()

double org.turro.financials.entity.BankAccount.getDebit ( )

Definition at line 100 of file BankAccount.java.

100  {
101  return debit;
102  }
Here is the caller graph for this function:

◆ getId()

long org.turro.financials.entity.BankAccount.getId ( )

Definition at line 60 of file BankAccount.java.

60  {
61  return id;
62  }
Here is the caller graph for this function:

◆ getRegisterOrder()

long org.turro.financials.entity.BankAccount.getRegisterOrder ( )

Definition at line 124 of file BankAccount.java.

124  {
125  return registerOrder;
126  }
Here is the caller graph for this function:

◆ getTransactionDate()

Date org.turro.financials.entity.BankAccount.getTransactionDate ( )

Definition at line 76 of file BankAccount.java.

76  {
77  return transactionDate;
78  }
Here is the caller graph for this function:

◆ getValueDate()

Date org.turro.financials.entity.BankAccount.getValueDate ( )

Definition at line 84 of file BankAccount.java.

84  {
85  return valueDate;
86  }

◆ setBalance()

void org.turro.financials.entity.BankAccount.setBalance ( double  balance)

Definition at line 120 of file BankAccount.java.

120  {
121  this.balance = balance;
122  }

◆ setConcept()

void org.turro.financials.entity.BankAccount.setConcept ( String  concept)

Definition at line 96 of file BankAccount.java.

96  {
97  this.concept = concept;
98  }

◆ setContract()

void org.turro.financials.entity.BankAccount.setContract ( Contract  contract)

Definition at line 72 of file BankAccount.java.

72  {
73  this.contract = contract;
74  }

◆ setCredit()

void org.turro.financials.entity.BankAccount.setCredit ( double  credit)

Definition at line 112 of file BankAccount.java.

112  {
113  this.credit = credit;
114  }

◆ setDebit()

void org.turro.financials.entity.BankAccount.setDebit ( double  debit)

Definition at line 104 of file BankAccount.java.

104  {
105  this.debit = debit;
106  }

◆ setId()

void org.turro.financials.entity.BankAccount.setId ( long  id)

Definition at line 64 of file BankAccount.java.

64  {
65  this.id = id;
66  }

◆ setRegisterOrder()

void org.turro.financials.entity.BankAccount.setRegisterOrder ( long  registerOrder)

Definition at line 128 of file BankAccount.java.

128  {
129  this.registerOrder = registerOrder;
130  }

◆ setTransactionDate()

void org.turro.financials.entity.BankAccount.setTransactionDate ( Date  transactionDate)

Definition at line 80 of file BankAccount.java.

80  {
81  this.transactionDate = transactionDate;
82  }

◆ setValueDate()

void org.turro.financials.entity.BankAccount.setValueDate ( Date  valueDate)

Definition at line 88 of file BankAccount.java.

88  {
89  this.valueDate = valueDate;
90  }

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