package com.luticate.utils; import com.luticate.utils.dbo.LuDbo; import java.util.HashMap; import java.util.List; /** * Created by robin on 10/20/16. */ public class TestDbo extends LuDbo { protected byte _byte; protected char _char; protected short _short; protected int _int; protected long _long; protected float _float; protected double _double; protected boolean _boolean; protected Byte _byteObject; protected Character _charObject; protected Short _shortObject; protected Integer _intObject; protected Long _longObject; protected Float _floatObject; protected Double _doubleObject; protected Boolean _booleanObject; protected String _string; protected Test2Dbo _test2Dbo; protected Test2Dbo _test2Dbo2; protected List _integers; protected int[] _ints; protected List _test2Dbos; protected Test2Dbo[] _dbos; public byte getByte() { return _byte; } public void setByte(byte aByte) { _byte = aByte; } public char getChar() { return _char; } public void setChar(char aChar) { _char = aChar; } public short getShort() { return _short; } public void setShort(short aShort) { _short = aShort; } public int getInt() { return _int; } public void setInt(int anInt) { _int = anInt; } public long getLong() { return _long; } public void setLong(long aLong) { _long = aLong; } public float getFloat() { return _float; } public void setFloat(float aFloat) { _float = aFloat; } public double getDouble() { return _double; } public void setDouble(double aDouble) { _double = aDouble; } public boolean isBoolean() { return _boolean; } public void setBoolean(boolean aBoolean) { _boolean = aBoolean; } public Byte getByteObject() { return _byteObject; } public void setByteObject(Byte byteObject) { _byteObject = byteObject; } public Character getCharObject() { return _charObject; } public void setCharObject(Character charObject) { _charObject = charObject; } public Short getShortObject() { return _shortObject; } public void setShortObject(Short shortObject) { _shortObject = shortObject; } public Integer getIntObject() { return _intObject; } public void setIntObject(Integer intObject) { _intObject = intObject; } public Long getLongObject() { return _longObject; } public void setLongObject(Long longObject) { _longObject = longObject; } public Float getFloatObject() { return _floatObject; } public void setFloatObject(Float floatObject) { _floatObject = floatObject; } public Double getDoubleObject() { return _doubleObject; } public void setDoubleObject(Double doubleObject) { _doubleObject = doubleObject; } public Boolean getBooleanObject() { return _booleanObject; } public void setBooleanObject(Boolean booleanObject) { _booleanObject = booleanObject; } public String getString() { return _string; } public void setString(String string) { _string = string; } public Test2Dbo getTest2Dbo() { return _test2Dbo; } public void setTest2Dbo(Test2Dbo test2Dbo) { _test2Dbo = test2Dbo; } public Test2Dbo getTest2Dbo2() { return _test2Dbo2; } public void setTest2Dbo2(Test2Dbo test2Dbo2) { _test2Dbo2 = test2Dbo2; } public List getIntegers() { return _integers; } public void setIntegers(List integers) { _integers = integers; } public int[] getInts() { return _ints; } public void setInts(int[] ints) { _ints = ints; } public List getTest2Dbos() { return _test2Dbos; } public void setTest2Dbos(List test2Dbos) { _test2Dbos = test2Dbos; } public Test2Dbo[] getDbos() { return _dbos; } public void setDbos(Test2Dbo[] dbos) { _dbos = dbos; } }