]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/TransactionListItem.java
UI and machinery for detecting hledger-web version
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / TransactionListItem.java
1 /*
2  * Copyright © 2020 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe 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  * MoLe 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 MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.model;
19
20 import androidx.annotation.NonNull;
21
22 import net.ktnx.mobileledger.App;
23 import net.ktnx.mobileledger.utils.SimpleDate;
24
25 import org.jetbrains.annotations.NotNull;
26
27 public class TransactionListItem {
28     private final Type type;
29     private SimpleDate date;
30     private boolean monthShown;
31     private LedgerTransaction transaction;
32     public TransactionListItem(@NotNull SimpleDate date, boolean monthShown) {
33         this.type = Type.DELIMITER;
34         this.date = date;
35         this.monthShown = monthShown;
36     }
37     public TransactionListItem(@NotNull LedgerTransaction transaction) {
38         this.type = Type.TRANSACTION;
39         this.transaction = transaction;
40     }
41     public TransactionListItem() {
42         this.type = Type.HEADER;
43     }
44     @NonNull
45     public Type getType() {
46         return type;
47     }
48     @NonNull
49     public SimpleDate getDate() {
50         if (date != null)
51             return date;
52         if (type == Type.HEADER)
53             throw new IllegalStateException("Header item has no date");
54         transaction.loadData(App.getDatabase());
55         return transaction.getDate();
56     }
57     public boolean isMonthShown() {
58         return monthShown;
59     }
60     @NotNull
61     public LedgerTransaction getTransaction() {
62         if (type != Type.TRANSACTION)
63             throw new IllegalStateException(
64                     String.format("Item type is not %s, but %s", Type.TRANSACTION, type));
65         return transaction;
66     }
67     public enum Type {TRANSACTION, DELIMITER, HEADER}
68 }