]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/model/TransactionListItem.java
ee1810a90fc6603320fdc07cab91c565f06953c1
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / TransactionListItem.java
1 /*
2  * Copyright © 2019 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 import java.util.Date;
21
22 public class TransactionListItem {
23     private Type type;
24     private Date date;
25     private boolean monthShown;
26     private LedgerTransaction transaction;
27     public TransactionListItem(Date date, boolean monthShown) {
28         this.type = Type.DELIMITER;
29         this.date = date;
30         this.monthShown = monthShown;
31     }
32     public TransactionListItem(LedgerTransaction transaction) {
33         this.type = Type.TRANSACTION;
34         this.transaction = transaction;
35     }
36     public Type getType() {
37         return type;
38     }
39     public Date getDate() {
40         return date;
41     }
42     public boolean isMonthShown() {
43         return monthShown;
44     }
45     public LedgerTransaction getTransaction() {
46         return transaction;
47     }
48     public enum Type {TRANSACTION, DELIMITER}
49 }