/* * Copyright 2012 The Solmix Project * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.gnu.org/licenses/ * or see the FSF site: http://www.fsf.org. */ package org.solmix.commons.util; /** * * @version 110035 */ public class Bean1 { private int a; private boolean a11; /** * @return the a11 */ public boolean isA11() { return a11; } /** * @param a11 * the a11 to set */ public void setA11(boolean a11) { this.a11 = a11; } private String b; public int c; public String d; public String g; protected int e; protected String f; public String a1; private String a2; public String a3; public String a4; /** * @return the a */ public int getA() { return a; } /** * @param a * the a to set */ public void setA(int a) { this.a = a; } /** * @return the b */ public String getB() { return b; } /** * @param b * the b to set */ public void setB(String b) { this.b = b; } /** * @return the c */ public int getC() { return c; } /** * @param c * the c to set */ public void setC(int c) { this.c = c; } /** * @return the d */ public String getD() { return d; } /** * @param d * the d to set */ public void setD(String d) { this.d = d; } /** * @return the e */ public int getE() { return e; } /** * @param e * the e to set */ public void setE(int e) { this.e = e; } /** * @return the f */ public String getF() { return f; } }