/taurus-web/src/org/taurus/web/gwt/server/composite/SumaryComposite.java

http://tauruss.googlecode.com/ · Java · 293 lines · 118 code · 78 blank · 97 comment · 0 complexity · 05014be3eda52fda0eb654d4b8722076 MD5 · raw file

  1. package org.taurus.web.gwt.server.composite;
  2. import java.io.Serializable;
  3. import com.google.gson.annotations.Expose;
  4. public class SumaryComposite implements Serializable{
  5. private static final long serialVersionUID = -2734546496705352211L;
  6. @Expose
  7. private String descripcion = "";
  8. @Expose
  9. private String enero = "0";
  10. @Expose
  11. private String febrero = "0";
  12. @Expose
  13. private String marzo = "0";
  14. @Expose
  15. private String abril = "0";
  16. @Expose
  17. private String mayo = "0";
  18. @Expose
  19. private String junio = "0";
  20. @Expose
  21. private String julio = "0";
  22. @Expose
  23. private String agosto = "0";
  24. @Expose
  25. private String septiembre = "0";
  26. @Expose
  27. private String octubre = "0";
  28. @Expose
  29. private String noviembre = "0";
  30. @Expose
  31. private String diciembre = "0";
  32. @Expose
  33. private String total = "0";
  34. /**
  35. * @return the abril
  36. */
  37. public String getAbril() {
  38. return abril;
  39. }
  40. /**
  41. * @return the agosto
  42. */
  43. public String getAgosto() {
  44. return agosto;
  45. }
  46. /**
  47. * @return the descripcion
  48. */
  49. public String getDescripcion() {
  50. return descripcion;
  51. }
  52. /**
  53. * @return the diciembre
  54. */
  55. public String getDiciembre() {
  56. return diciembre;
  57. }
  58. /**
  59. * @return the enero
  60. */
  61. public String getEnero() {
  62. return enero;
  63. }
  64. /**
  65. * @return the febrero
  66. */
  67. public String getFebrero() {
  68. return febrero;
  69. }
  70. /**
  71. * @return the julio
  72. */
  73. public String getJulio() {
  74. return julio;
  75. }
  76. /**
  77. * @return the junio
  78. */
  79. public String getJunio() {
  80. return junio;
  81. }
  82. /**
  83. * @return the marzo
  84. */
  85. public String getMarzo() {
  86. return marzo;
  87. }
  88. /**
  89. * @return the mayo
  90. */
  91. public String getMayo() {
  92. return mayo;
  93. }
  94. /**
  95. * @return the noviembre
  96. */
  97. public String getNoviembre() {
  98. return noviembre;
  99. }
  100. /**
  101. * @return the octubre
  102. */
  103. public String getOctubre() {
  104. return octubre;
  105. }
  106. /**
  107. * @return the septiembre
  108. */
  109. public String getSeptiembre() {
  110. return septiembre;
  111. }
  112. /**
  113. * @return the total
  114. */
  115. public String getTotal() {
  116. return total;
  117. }
  118. /**
  119. * @param abril
  120. * the abril to set
  121. */
  122. public void setAbril(String abril) {
  123. this.abril = abril;
  124. }
  125. /**
  126. * @param agosto
  127. * the agosto to set
  128. */
  129. public void setAgosto(String agosto) {
  130. this.agosto = agosto;
  131. }
  132. /**
  133. * @param descripcion
  134. * the descripcion to set
  135. */
  136. public void setDescripcion(String descripsion) {
  137. descripcion = descripsion;
  138. }
  139. /**
  140. * @param diciembre
  141. * the diciembre to set
  142. */
  143. public void setDiciembre(String diciembre) {
  144. this.diciembre = diciembre;
  145. }
  146. /**
  147. * @param enero
  148. * the enero to set
  149. */
  150. public void setEnero(String enero) {
  151. this.enero = enero;
  152. }
  153. /**
  154. * @param febrero
  155. * the febrero to set
  156. */
  157. public void setFebrero(String febrero) {
  158. this.febrero = febrero;
  159. }
  160. /**
  161. * @param julio
  162. * the julio to set
  163. */
  164. public void setJulio(String julio) {
  165. this.julio = julio;
  166. }
  167. /**
  168. * @param junio
  169. * the junio to set
  170. */
  171. public void setJunio(String junio) {
  172. this.junio = junio;
  173. }
  174. /**
  175. * @param marzo
  176. * the marzo to set
  177. */
  178. public void setMarzo(String marzo) {
  179. this.marzo = marzo;
  180. }
  181. /**
  182. * @param mayo
  183. * the mayo to set
  184. */
  185. public void setMayo(String mayo) {
  186. this.mayo = mayo;
  187. }
  188. /**
  189. * @param noviembre
  190. * the noviembre to set
  191. */
  192. public void setNoviembre(String noviembre) {
  193. this.noviembre = noviembre;
  194. }
  195. /**
  196. * @param octubre
  197. * the octubre to set
  198. */
  199. public void setOctubre(String octubre) {
  200. this.octubre = octubre;
  201. }
  202. /**
  203. * @param septiembre
  204. * the septiembre to set
  205. */
  206. public void setSeptiembre(String septiembre) {
  207. this.septiembre = septiembre;
  208. }
  209. /**
  210. * @param total the total to set
  211. */
  212. public void setTotal(String total) {
  213. this.total = total;
  214. }
  215. }