]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/LedgerTransactionItem.java
add license boilerplates for authored content
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / 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;
19
20 class LedgerTransactionItem {
21     private String account_name;
22     private float amount;
23     private boolean amount_set;
24
25     LedgerTransactionItem(String account_name, float amount) {
26         this.account_name = account_name;
27         this.amount = amount;
28         this.amount_set = true;
29     }
30
31     public LedgerTransactionItem(String account_name) {
32         this.account_name = account_name;
33     }
34
35     public String get_account_name() {
36         return account_name;
37     }
38
39     public void set_account_name(String account_name) {
40         this.account_name = account_name;
41     }
42
43     public float get_amount() {
44         if (!amount_set)
45             throw new IllegalStateException("Account amount is not set");
46
47         return amount;
48     }
49
50     public void set_amount(float account_amount) {
51         this.amount = account_amount;
52         this.amount_set = true;
53     }
54
55     public void reset_amount() {
56         this.amount_set = false;
57     }
58
59     public boolean is_amount_set() {
60         return amount_set;
61     }
62 }