You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestDbo.java 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. package com.luticate.utils;
  2. import com.luticate.utils.dbo.LuDbo;
  3. import java.io.Serializable;
  4. import java.util.AbstractMap;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. /**
  8. * Created by robin on 10/20/16.
  9. */
  10. public class TestDbo extends LuDbo implements Serializable {
  11. protected byte _byte;
  12. protected char _char;
  13. protected short _short;
  14. protected int _int;
  15. protected long _long;
  16. protected float _float;
  17. protected double _double;
  18. protected boolean _boolean;
  19. protected Byte _byteObject;
  20. protected Character _charObject;
  21. protected Short _shortObject;
  22. protected Integer _intObject;
  23. protected Long _longObject;
  24. protected Float _floatObject;
  25. protected Double _doubleObject;
  26. protected Boolean _booleanObject;
  27. protected String _string;
  28. protected Test2Dbo _test2Dbo;
  29. protected Test2Dbo _test2Dbo2;
  30. protected List<Integer> _integers;
  31. protected int[] _ints;
  32. protected List<Test2Dbo> _test2Dbos;
  33. protected Test2Dbo[] _dbos;
  34. protected HashMap<String, Integer> _hashMap;
  35. protected AbstractMap<String, Test2Dbo> _hashMap2;
  36. public byte getByte() {
  37. return _byte;
  38. }
  39. public void setByte(byte aByte) {
  40. _byte = aByte;
  41. }
  42. public char getChar() {
  43. return _char;
  44. }
  45. public void setChar(char aChar) {
  46. _char = aChar;
  47. }
  48. public short getShort() {
  49. return _short;
  50. }
  51. public void setShort(short aShort) {
  52. _short = aShort;
  53. }
  54. public int getInt() {
  55. return _int;
  56. }
  57. public void setInt(int anInt) {
  58. _int = anInt;
  59. }
  60. public long getLong() {
  61. return _long;
  62. }
  63. public void setLong(long aLong) {
  64. _long = aLong;
  65. }
  66. public float getFloat() {
  67. return _float;
  68. }
  69. public void setFloat(float aFloat) {
  70. _float = aFloat;
  71. }
  72. public double getDouble() {
  73. return _double;
  74. }
  75. public void setDouble(double aDouble) {
  76. _double = aDouble;
  77. }
  78. public boolean isBoolean() {
  79. return _boolean;
  80. }
  81. public void setBoolean(boolean aBoolean) {
  82. _boolean = aBoolean;
  83. }
  84. public Byte getByteObject() {
  85. return _byteObject;
  86. }
  87. public void setByteObject(Byte byteObject) {
  88. _byteObject = byteObject;
  89. }
  90. public Character getCharObject() {
  91. return _charObject;
  92. }
  93. public void setCharObject(Character charObject) {
  94. _charObject = charObject;
  95. }
  96. public Short getShortObject() {
  97. return _shortObject;
  98. }
  99. public void setShortObject(Short shortObject) {
  100. _shortObject = shortObject;
  101. }
  102. public Integer getIntObject() {
  103. return _intObject;
  104. }
  105. public void setIntObject(Integer intObject) {
  106. _intObject = intObject;
  107. }
  108. public Long getLongObject() {
  109. return _longObject;
  110. }
  111. public void setLongObject(Long longObject) {
  112. _longObject = longObject;
  113. }
  114. public Float getFloatObject() {
  115. return _floatObject;
  116. }
  117. public void setFloatObject(Float floatObject) {
  118. _floatObject = floatObject;
  119. }
  120. public Double getDoubleObject() {
  121. return _doubleObject;
  122. }
  123. public void setDoubleObject(Double doubleObject) {
  124. _doubleObject = doubleObject;
  125. }
  126. public Boolean getBooleanObject() {
  127. return _booleanObject;
  128. }
  129. public void setBooleanObject(Boolean booleanObject) {
  130. _booleanObject = booleanObject;
  131. }
  132. public String getString() {
  133. return _string;
  134. }
  135. public void setString(String string) {
  136. _string = string;
  137. }
  138. public Test2Dbo getTest2Dbo() {
  139. return _test2Dbo;
  140. }
  141. public void setTest2Dbo(Test2Dbo test2Dbo) {
  142. _test2Dbo = test2Dbo;
  143. }
  144. public Test2Dbo getTest2Dbo2() {
  145. return _test2Dbo2;
  146. }
  147. public void setTest2Dbo2(Test2Dbo test2Dbo2) {
  148. _test2Dbo2 = test2Dbo2;
  149. }
  150. public List<Integer> getIntegers() {
  151. return _integers;
  152. }
  153. public void setIntegers(List<Integer> integers) {
  154. _integers = integers;
  155. }
  156. public int[] getInts() {
  157. return _ints;
  158. }
  159. public void setInts(int[] ints) {
  160. _ints = ints;
  161. }
  162. public List<Test2Dbo> getTest2Dbos() {
  163. return _test2Dbos;
  164. }
  165. public void setTest2Dbos(List<Test2Dbo> test2Dbos) {
  166. _test2Dbos = test2Dbos;
  167. }
  168. public Test2Dbo[] getDbos() {
  169. return _dbos;
  170. }
  171. public void setDbos(Test2Dbo[] dbos) {
  172. _dbos = dbos;
  173. }
  174. public HashMap<String, Integer> getHashMap() {
  175. return _hashMap;
  176. }
  177. public void setHashMap(HashMap<String, Integer> hashMap) {
  178. _hashMap = hashMap;
  179. }
  180. public AbstractMap<String, Test2Dbo> getHashMap2() {
  181. return _hashMap2;
  182. }
  183. public void setHashMap2(AbstractMap<String, Test2Dbo> hashMap2) {
  184. _hashMap2 = hashMap2;
  185. }
  186. }