/** * 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.nativetypes; public class FloatWrapperSource { private Float b; private Float bb; private Float s; private Float ss; private Float i; private Float ii; private Float l; private Float ll; private Float f; private Float ff; private Float d; private Float dd; public Float getB() { return b; } public void setB(Float b) { this.b = b; } public Float getBb() { return bb; } public void setBb(Float bb) { this.bb = bb; } public Float getS() { return s; } public void setS(Float s) { this.s = s; } public Float getSs() { return ss; } public void setSs(Float ss) { this.ss = ss; } public Float getI() { return i; } public void setI(Float i) { this.i = i; } public Float getIi() { return ii; } public void setIi(Float ii) { this.ii = ii; } public Float getL() { return l; } public void setL(Float l) { this.l = l; } public Float getLl() { return ll; } public void setLl(Float ll) { this.ll = ll; } public Float getF() { return f; } public void setF(Float f) { this.f = f; } public Float getFf() { return ff; } public void setFf(Float ff) { this.ff = ff; } public Float getD() { return d; } public void setD(Float d) { this.d = d; } public Float getDd() { return dd; } public void setDd(Float dd) { this.dd = dd; } }