/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
- package org.taurus.web.gwt.server.composite;
- import java.io.Serializable;
- import com.google.gson.annotations.Expose;
- public class SumaryComposite implements Serializable{
- private static final long serialVersionUID = -2734546496705352211L;
- @Expose
- private String descripcion = "";
- @Expose
- private String enero = "0";
- @Expose
- private String febrero = "0";
- @Expose
- private String marzo = "0";
- @Expose
- private String abril = "0";
- @Expose
- private String mayo = "0";
- @Expose
- private String junio = "0";
- @Expose
- private String julio = "0";
- @Expose
- private String agosto = "0";
- @Expose
- private String septiembre = "0";
- @Expose
- private String octubre = "0";
- @Expose
- private String noviembre = "0";
- @Expose
- private String diciembre = "0";
- @Expose
- private String total = "0";
- /**
- * @return the abril
- */
- public String getAbril() {
- return abril;
- }
- /**
- * @return the agosto
- */
- public String getAgosto() {
- return agosto;
- }
- /**
- * @return the descripcion
- */
- public String getDescripcion() {
- return descripcion;
- }
- /**
- * @return the diciembre
- */
- public String getDiciembre() {
- return diciembre;
- }
- /**
- * @return the enero
- */
- public String getEnero() {
- return enero;
- }
- /**
- * @return the febrero
- */
- public String getFebrero() {
- return febrero;
- }
- /**
- * @return the julio
- */
- public String getJulio() {
- return julio;
- }
- /**
- * @return the junio
- */
- public String getJunio() {
- return junio;
- }
- /**
- * @return the marzo
- */
- public String getMarzo() {
- return marzo;
- }
- /**
- * @return the mayo
- */
- public String getMayo() {
- return mayo;
- }
- /**
- * @return the noviembre
- */
- public String getNoviembre() {
- return noviembre;
- }
- /**
- * @return the octubre
- */
- public String getOctubre() {
- return octubre;
- }
- /**
- * @return the septiembre
- */
- public String getSeptiembre() {
- return septiembre;
- }
- /**
- * @return the total
- */
- public String getTotal() {
- return total;
- }
- /**
- * @param abril
- * the abril to set
- */
- public void setAbril(String abril) {
- this.abril = abril;
- }
- /**
- * @param agosto
- * the agosto to set
- */
- public void setAgosto(String agosto) {
- this.agosto = agosto;
- }
- /**
- * @param descripcion
- * the descripcion to set
- */
- public void setDescripcion(String descripsion) {
- descripcion = descripsion;
- }
- /**
- * @param diciembre
- * the diciembre to set
- */
- public void setDiciembre(String diciembre) {
- this.diciembre = diciembre;
- }
- /**
- * @param enero
- * the enero to set
- */
- public void setEnero(String enero) {
- this.enero = enero;
- }
- /**
- * @param febrero
- * the febrero to set
- */
- public void setFebrero(String febrero) {
- this.febrero = febrero;
- }
- /**
- * @param julio
- * the julio to set
- */
- public void setJulio(String julio) {
- this.julio = julio;
- }
- /**
- * @param junio
- * the junio to set
- */
- public void setJunio(String junio) {
- this.junio = junio;
- }
- /**
- * @param marzo
- * the marzo to set
- */
- public void setMarzo(String marzo) {
- this.marzo = marzo;
- }
- /**
- * @param mayo
- * the mayo to set
- */
- public void setMayo(String mayo) {
- this.mayo = mayo;
- }
- /**
- * @param noviembre
- * the noviembre to set
- */
- public void setNoviembre(String noviembre) {
- this.noviembre = noviembre;
- }
- /**
- * @param octubre
- * the octubre to set
- */
- public void setOctubre(String octubre) {
- this.octubre = octubre;
- }
- /**
- * @param septiembre
- * the septiembre to set
- */
- public void setSeptiembre(String septiembre) {
- this.septiembre = septiembre;
- }
- /**
- * @param total the total to set
- */
- public void setTotal(String total) {
- this.total = total;
- }
- }