]> git.ktnx.net Git - mobile-ledger.git/commitdiff
new transaction model: add setDate method
authorDamyan Ivanov <dam+mobileledger@ktnx.net>
Wed, 6 Jan 2021 17:01:51 +0000 (19:01 +0200)
committerDamyan Ivanov <dam+mobileledger@ktnx.net>
Wed, 6 Jan 2021 17:01:51 +0000 (19:01 +0200)
app/src/main/java/net/ktnx/mobileledger/ui/activity/NewTransactionModel.java

index 8660c2159f0b5ba93ee7c55db49329f11efc8b09..b647eb85e2ab48c60f4735a268a51db20006ed6e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2020 Damyan Ivanov.
+ * Copyright © 2021 Damyan Ivanov.
  * This file is part of MoLe.
  * MoLe is free software: you can distribute it and/or modify it
  * under the term of the GNU General Public License as published by
@@ -88,6 +88,9 @@ public class NewTransactionModel extends ViewModel {
     public SimpleDate getDate() {
         return header.date.getValue();
     }
+    public void setDate(SimpleDate date) {
+        header.date.setValue(date);
+    }
     public String getDescription() {
         return header.description.getValue();
     }