1 package ecar.bean; 2 3 4 /** 5 * @author cristiano 6 * 7 */ 8 9 public class TempBean { 10 private Long codLit = null; 11 private Integer mes = null; 12 private Integer ano = null; 13 private Double qtde = null; 14 15 16 /** 17 * Retorna Integer ano.<br> 18 * 19 * @author N/C 20 * @since N/C 21 * @version N/C 22 * @return Integer 23 */ 24 public Integer getAno() { 25 return ano; 26 } 27 28 /** 29 * Atribui valor especificado para Integer ano.<br> 30 * 31 * @author N/C 32 * @since N/C 33 * @version N/C 34 * @param Integer ano 35 */ 36 public void setAno(Integer ano) { 37 this.ano = ano; 38 } 39 40 /** 41 * Retorna Long codLit.<br> 42 * 43 * @author N/C 44 * @since N/C 45 * @version N/C 46 * @return Long 47 */ 48 public Long getCodLit() { 49 return codLit; 50 } 51 52 /** 53 * Atribui valor especificado para Long codLit.<br> 54 * 55 * @author N/C 56 * @since N/C 57 * @version N/C 58 * @param Long codLit 59 */ 60 public void setCodLit(Long codLit) { 61 this.codLit = codLit; 62 } 63 64 /** 65 * Retorna Integer mes.<br> 66 * 67 * @author N/C 68 * @since N/C 69 * @version N/C 70 * @return Integer 71 */ 72 public Integer getMes() { 73 return mes; 74 } 75 76 /** 77 * Atribui valor especificado para Integer mes.<br> 78 * 79 * @author N/C 80 * @since N/C 81 * @version N/C 82 * @param Integer mes 83 */ 84 public void setMes(Integer mes) { 85 this.mes = mes; 86 } 87 88 /** 89 * Retorna Double qtde.<br> 90 * 91 * @author N/C 92 * @since N/C 93 * @version N/C 94 * @return Double 95 */ 96 public Double getQtde() { 97 return qtde; 98 } 99 100 /** 101 * Atribui valor especificado para Double qtde.<br> 102 * 103 * @author N/C 104 * @since N/C 105 * @version N/C 106 * @param Double qtde 107 */ 108 public void setQtde(Double qtde) { 109 this.qtde = qtde; 110 } 111 }