]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/LedgerTransactionAccount.java
Rename to MoLe
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / LedgerTransactionAccount.java
index 04ea9c06c43831061996d19b19fe3560b461b3c6..83b349e2f67cf58bfa019c9057faaf13c95bbf23 100644 (file)
@@ -1,18 +1,18 @@
 /*
  * Copyright © 2018 Damyan Ivanov.
- * This file is part of Mobile-Ledger.
- * Mobile-Ledger is free software: you can distribute it and/or modify it
+ * 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
  * the Free Software Foundation, either version 3 of the License, or
  * (at your opinion), any later version.
  *
- * Mobile-Ledger is distributed in the hope that it will be useful,
+ * MoLe is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  * GNU General Public License terms for details.
  *
  * You should have received a copy of the GNU General Public License
- * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
+ * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
  */
 
 package net.ktnx.mobileledger.model;
@@ -21,6 +21,7 @@ import android.support.annotation.NonNull;
 
 public class LedgerTransactionAccount {
     private String accountName;
+    private String shortAccountName;
     private float amount;
     private boolean amountSet;
     private String currency;
@@ -29,7 +30,7 @@ public class LedgerTransactionAccount {
         this(accountName, amount, null);
     }
     public LedgerTransactionAccount(String accountName, float amount, String currency) {
-        this.accountName = accountName;
+        this.setAccountName(accountName);
         this.amount = amount;
         this.amountSet = true;
         this.currency = currency;
@@ -43,13 +44,11 @@ public class LedgerTransactionAccount {
         return accountName;
     }
     public String getShortAccountName() {
-        String result = accountName;
-        result = result.replaceAll("(?<=^|:)(.)[^:]+(?=:)", "$1");
-        return result;
+        return shortAccountName;
     }
-
     public void setAccountName(String accountName) {
         this.accountName = accountName;
+        shortAccountName = accountName.replaceAll("(?<=^|:)(.)[^:]+(?=:)", "$1");
     }
 
     public float getAmount() {