/** * Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/) * and/or other contributors as indicated by the @authors tag. See the * copyright.txt file in the distribution for a full listing of all * contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.mapstruct.ap.test.conversion.bignumbers; import java.math.BigDecimal; public class BigDecimalSource { private BigDecimal b; private BigDecimal bb; private BigDecimal s; private BigDecimal ss; private BigDecimal i; private BigDecimal ii; private BigDecimal l; private BigDecimal ll; private BigDecimal f; private BigDecimal ff; private BigDecimal d; private BigDecimal dd; private BigDecimal string; private BigDecimal bigInteger; public BigDecimal getB() { return b; } public void setB(BigDecimal b) { this.b = b; } public BigDecimal getBb() { return bb; } public void setBb(BigDecimal bb) { this.bb = bb; } public BigDecimal getS() { return s; } public void setS(BigDecimal s) { this.s = s; } public BigDecimal getSs() { return ss; } public void setSs(BigDecimal ss) { this.ss = ss; } public BigDecimal getI() { return i; } public void setI(BigDecimal i) { this.i = i; } public BigDecimal getIi() { return ii; } public void setIi(BigDecimal ii) { this.ii = ii; } public BigDecimal getL() { return l; } public void setL(BigDecimal l) { this.l = l; } public BigDecimal getLl() { return ll; } public void setLl(BigDecimal ll) { this.ll = ll; } public BigDecimal getF() { return f; } public void setF(BigDecimal f) { this.f = f; } public BigDecimal getFf() { return ff; } public void setFf(BigDecimal ff) { this.ff = ff; } public BigDecimal getD() { return d; } public void setD(BigDecimal d) { this.d = d; } public BigDecimal getDd() { return dd; } public void setDd(BigDecimal dd) { this.dd = dd; } public BigDecimal getString() { return string; } public void setString(BigDecimal string) { this.string = string; } public BigDecimal getBigInteger() { return bigInteger; } public void setBigInteger(BigDecimal bigInteger) { this.bigInteger = bigInteger; } }