]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/ParsedAmount.java
methods for converting of run-time data structures to json-serializable ones
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ParsedAmount.java
index 0a8b8c85b742b28c2e3382f173afeb3c149592a6..4d38c55b91c548fc8e3025e01fb1cfd5aa99e3eb 100644 (file)
@@ -25,8 +25,15 @@ public class ParsedAmount {
     private ParsedQuantity aquantity;
     private boolean aismultiplier;
     private ParsedStyle astyle;
+    private ParsedPrice aprice = new ParsedPrice();
     public ParsedAmount() {
     }
+    public ParsedPrice getAprice() {
+        return aprice;
+    }
+    public void setAprice(ParsedPrice aprice) {
+        this.aprice = aprice;
+    }
     public String getAcommodity() {
         return acommodity;
     }