Add comments for money object
This commit is contained in:
parent
1b7c7000bb
commit
a7217b563a
@ -11,7 +11,11 @@ import java.util.*
|
|||||||
class MoneyObject(
|
class MoneyObject(
|
||||||
private var value: Double,
|
private var value: Double,
|
||||||
private var currency: String,
|
private var currency: String,
|
||||||
|
|
||||||
|
// operator, used with "with" below
|
||||||
|
// example: if we have next we will use this operator to compute the value with
|
||||||
var operator: MoneyOperator? = null,
|
var operator: MoneyOperator? = null,
|
||||||
|
// the value to compute with current object
|
||||||
var with: MoneyObject? = null,
|
var with: MoneyObject? = null,
|
||||||
) : StdMoney {
|
) : StdMoney {
|
||||||
override fun getCurrency(): StdMoney.Currency {
|
override fun getCurrency(): StdMoney.Currency {
|
||||||
|
Loading…
Reference in New Issue
Block a user