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.3KB

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