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