- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 28 of file Movement.java.
◆ Movement() [1/2]
org.turro.financials.product.Movement.Movement |
( |
Contract |
contract, |
|
|
Date |
date, |
|
|
double |
coefficient, |
|
|
double |
quantity, |
|
|
double |
price, |
|
|
String |
concept |
|
) |
| |
Definition at line 35 of file Movement.java.
36 this.contract = contract;
38 this.coefficient = coefficient;
39 this.quantity = quantity;
41 this.concept = concept;
◆ Movement() [2/2]
org.turro.financials.product.Movement.Movement |
( |
String |
concept, |
|
|
double |
quantity, |
|
|
double |
price |
|
) |
| |
Definition at line 44 of file Movement.java.
45 this.quantity = quantity;
47 this.concept = concept;
◆ getAmount()
double org.turro.financials.product.Movement.getAmount |
( |
| ) |
|
◆ getCoefficient()
double org.turro.financials.product.Movement.getCoefficient |
( |
| ) |
|
◆ getConcept()
String org.turro.financials.product.Movement.getConcept |
( |
| ) |
|
◆ getContract()
Contract org.turro.financials.product.Movement.getContract |
( |
| ) |
|
◆ getDate()
Date org.turro.financials.product.Movement.getDate |
( |
| ) |
|
◆ getPrice()
double org.turro.financials.product.Movement.getPrice |
( |
| ) |
|
◆ getQuantity()
double org.turro.financials.product.Movement.getQuantity |
( |
| ) |
|
Definition at line 70 of file Movement.java.
71 if(contract ==
null) {
74 return quantity * coefficient;
◆ setCoefficient()
void org.turro.financials.product.Movement.setCoefficient |
( |
double |
coefficient | ) |
|
Definition at line 86 of file Movement.java.
87 this.coefficient = coefficient;
◆ setConcept()
void org.turro.financials.product.Movement.setConcept |
( |
String |
concept | ) |
|
◆ setContract()
void org.turro.financials.product.Movement.setContract |
( |
Contract |
contract | ) |
|
◆ setDate()
void org.turro.financials.product.Movement.setDate |
( |
Date |
date | ) |
|
◆ setPrice()
void org.turro.financials.product.Movement.setPrice |
( |
double |
price | ) |
|
◆ setQuantity()
void org.turro.financials.product.Movement.setQuantity |
( |
double |
quantity | ) |
|
The documentation for this class was generated from the following file: