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.
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.
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/>.
18 package net.ktnx.mobileledger.model;
20 import androidx.annotation.NonNull;
22 import net.ktnx.mobileledger.App;
23 import net.ktnx.mobileledger.utils.SimpleDate;
25 import org.jetbrains.annotations.NotNull;
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;
35 this.monthShown = monthShown;
37 public TransactionListItem(@NotNull LedgerTransaction transaction) {
38 this.type = Type.TRANSACTION;
39 this.transaction = transaction;
41 public TransactionListItem() {
42 this.type = Type.HEADER;
45 public Type getType() {
49 public SimpleDate getDate() {
52 if (type == Type.HEADER)
53 throw new IllegalStateException("Header item has no date");
54 transaction.loadData(App.getDatabase());
55 return transaction.getDate();
57 public boolean isMonthShown() {
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));
67 public enum Type {TRANSACTION, DELIMITER, HEADER}