]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/ParsedAmount.java
ParsedAmount: do not create a price member object by default
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ParsedAmount.java
index 0a8b8c85b742b28c2e3382f173afeb3c149592a6..e66258b1fac49c3c7090d151d49f0c25e0758a6e 100644 (file)
@@ -25,8 +25,15 @@ public class ParsedAmount {
     private ParsedQuantity aquantity;
     private boolean aismultiplier;
     private ParsedStyle astyle;
+    private ParsedPrice aprice;
     public ParsedAmount() {
     }
+    public ParsedPrice getAprice() {
+        return aprice;
+    }
+    public void setAprice(ParsedPrice aprice) {
+        this.aprice = aprice;
+    }
     public String getAcommodity() {
         return acommodity;
     }