]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionItem.java
ff19a450251aef1077855d2862f21502cb42c0e8
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / LedgerTransactionItem.java
1 /*
2  * Copyright © 2018 Damyan Ivanov.
3  * This file is part of Mobile-Ledger.
4  * Mobile-Ledger is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * Mobile-Ledger is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.model;
19
20 public class LedgerTransactionItem {
21     private String accountName;
22     private float amount;
23     private boolean amountSet;
24     private String currency;
25
26     public LedgerTransactionItem(String accountName, float amount) {
27         this(accountName, amount, null);
28     }
29     public LedgerTransactionItem(String accountName, float amount, String currency) {
30         this.accountName = accountName;
31         this.amount = amount;
32         this.amountSet = true;
33         this.currency = currency;
34     }
35
36     public LedgerTransactionItem(String accountName) {
37         this.accountName = accountName;
38     }
39
40     public String getAccountName() {
41         return accountName;
42     }
43
44     public void setAccountName(String accountName) {
45         this.accountName = accountName;
46     }
47
48     public float getAmount() {
49         if (!amountSet)
50             throw new IllegalStateException("Account amount is not set");
51
52         return amount;
53     }
54
55     public void setAmount(float account_amount) {
56         this.amount = account_amount;
57         this.amountSet = true;
58     }
59
60     public void resetAmount() {
61         this.amountSet = false;
62     }
63
64     public boolean isAmountSet() {
65         return amountSet;
66     }
67     public String getCurrency() {
68         return currency;
69     }
70 }