// Copyright (c) 2003-present, Jodd Team (http://jodd.org)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
/* created by makebean v0.25 (coded by Weird) */
package jodd.bean.fixtures;
import java.util.Map;
import java.util.List;
public class FooBean {
private Integer fooInteger;
public Integer getFooInteger() {
return fooInteger;
}
public void setFooInteger(Integer v) {
fooInteger = v;
}
private int fooint;
public int getFooint() {
return fooint;
}
public void setFooint(int v) {
fooint = v;
}
private Long fooLong;
public Long getFooLong() {
return fooLong;
}
public void setFooLong(Long v) {
fooLong = v;
}
private long foolong;
public long getFoolong() {
return foolong;
}
public void setFoolong(long v) {
foolong = v;
}
private Byte fooByte;
public Byte getFooByte() {
return fooByte;
}
public void setFooByte(Byte v) {
fooByte = v;
}
private byte foobyte;
public byte getFoobyte() {
return foobyte;
}
public void setFoobyte(byte v) {
foobyte = v;
}
private Character fooCharacter;
public Character getFooCharacter() {
return fooCharacter;
}
public void setFooCharacter(Character v) {
fooCharacter = v;
}
private char foochar;
public char getFoochar() {
return foochar;
}
public void setFoochar(char v) {
foochar = v;
}
private Boolean fooBoolean;
public Boolean getFooBoolean() {
return fooBoolean;
}
public void setFooBoolean(Boolean v) {
fooBoolean = v;
}
private boolean fooboolean;
public boolean getFooboolean() {
return fooboolean;
}
public void setFooboolean(boolean v) {
fooboolean = v;
}
private Float fooFloat;
public Float getFooFloat() {
return fooFloat;
}
public void setFooFloat(Float v) {
fooFloat = v;
}
private float foofloat;
public float getFoofloat() {
return foofloat;
}
public void setFoofloat(float v) {
foofloat = v;
}
private Double fooDouble;
public Double getFooDouble() {
return fooDouble;
}
public void setFooDouble(Double v) {
fooDouble = v;
}
private double foodouble;
public double getFoodouble() {
return foodouble;
}
public void setFoodouble(double v) {
foodouble = v;
}
private String fooString;
public String getFooString() {
return fooString;
}
public void setFooString(String v) {
fooString = v;
}
private String[] fooStringA;
public String[] getFooStringA() {
return fooStringA;
}
public void setFooStringA(String[] v) {
fooStringA = v;
}
private Map fooMap;
public Map getFooMap() {
return fooMap;
}
public void setFooMap(Map fooMap) {
this.fooMap = fooMap;
}
private List fooList;
public List getFooList() {
return fooList;
}
public void setFooList(List fooList) {
this.fooList = fooList;
}
}