X-Git-Url: https://git.ktnx.net/?p=mobile-ledger-staging.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2Fv1_14%2FParsedStyle.java;h=74b02a5090de22278eaafaec1dc70b42e1ad9974;hp=798cb81c8bff5d03ff4b9b489bee2e236f2f90bb;hb=a87079ed41bdc3ad89fe8bd15dfba10e37b29b76;hpb=052c43e2d1b50e31aa9b1293e929de6dd8ffbc6b diff --git a/app/src/main/java/net/ktnx/mobileledger/json/v1_14/ParsedStyle.java b/app/src/main/java/net/ktnx/mobileledger/json/v1_14/ParsedStyle.java index 798cb81c..74b02a50 100644 --- a/app/src/main/java/net/ktnx/mobileledger/json/v1_14/ParsedStyle.java +++ b/app/src/main/java/net/ktnx/mobileledger/json/v1_14/ParsedStyle.java @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Damyan Ivanov. + * Copyright © 2020 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 @@ -20,12 +20,8 @@ package net.ktnx.mobileledger.json.v1_14; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; @JsonIgnoreProperties(ignoreUnknown = true) -public class ParsedStyle { +public class ParsedStyle extends net.ktnx.mobileledger.json.ParsedStyle { private int asprecision; - private char asdecimalpoint; - private char ascommodityside; - private int digitgroups; - private boolean ascommodityspaced; public ParsedStyle() { } public int getAsprecision() { @@ -34,28 +30,4 @@ public class ParsedStyle { public void setAsprecision(int asprecision) { this.asprecision = asprecision; } - public char getAsdecimalpoint() { - return asdecimalpoint; - } - public void setAsdecimalpoint(char asdecimalpoint) { - this.asdecimalpoint = asdecimalpoint; - } - public char getAscommodityside() { - return ascommodityside; - } - public void setAscommodityside(char ascommodityside) { - this.ascommodityside = ascommodityside; - } - public int getDigitgroups() { - return digitgroups; - } - public void setDigitgroups(int digitgroups) { - this.digitgroups = digitgroups; - } - public boolean isAscommodityspaced() { - return ascommodityspaced; - } - public void setAscommodityspaced(boolean ascommodityspaced) { - this.ascommodityspaced = ascommodityspaced; - } }