]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/v1_15/ParsedBalance.java
Revert "remove references to style members from the parser classes"
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / v1_15 / ParsedBalance.java
index c2854c0e964b474f01a5e4dcc7a93a7745a4a745..24e9ccb07f8015523c287e4860d00d359dff5d0c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2020 Damyan Ivanov.
+ * Copyright © 2019 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
@@ -25,6 +25,7 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 public class ParsedBalance {
     private ParsedQuantity aquantity;
     private String acommodity;
+    private ParsedStyle astyle;
     public ParsedBalance() {
     }
     public ParsedQuantity getAquantity() {
@@ -40,4 +41,10 @@ public class ParsedBalance {
     public void setAcommodity(String acommodity) {
         this.acommodity = acommodity;
     }
+    public ParsedStyle getAstyle() {
+        return astyle;
+    }
+    public void setAstyle(ParsedStyle astyle) {
+        this.astyle = astyle;
+    }
 }