Rev 261 | Rev 267 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 261 | Rev 264 | ||
|---|---|---|---|
| Line 4... | Line 4... | ||
| 4 | 4 | ||
| 5 | import br.com.ec.domain.dto.consulta.ParametrosConsultaVendasDTO; |
5 | import br.com.ec.domain.dto.consulta.ParametrosConsultaVendasDTO; |
| 6 | 6 | ||
| 7 | public class GraficoBarraDTO extends GraficoDTO { |
7 | public class GraficoBarraDTO extends GraficoDTO { |
| 8 | 8 | ||
| 9 | BarChartModel graficoBarra;
|
- | |
| 10 | - | ||
| - | 9 | private BarChartModel graficoBarra; |
|
| - | 10 | ||
| - | 11 | private GraficoDadoDTO dados; |
|
| - | 12 | private String titulo; |
|
| - | 13 | ||
| 11 | public GraficoBarraDTO() {} |
14 | public GraficoBarraDTO() {} |
| 12 | 15 | ||
| 13 | public GraficoBarraDTO(ParametrosConsultaVendasDTO parametrosConsulta) { |
16 | public GraficoBarraDTO(ParametrosConsultaVendasDTO parametrosConsulta) { |
| 14 | super(parametrosConsulta); |
17 | super(parametrosConsulta); |
| 15 | }
|
18 | }
|
| Line 19... | Line 22... | ||
| 19 | }
|
22 | }
|
| 20 | public void setGraficoBarra(BarChartModel graficoBarra) { |
23 | public void setGraficoBarra(BarChartModel graficoBarra) { |
| 21 | this.graficoBarra = graficoBarra; |
24 | this.graficoBarra = graficoBarra; |
| 22 | }
|
25 | }
|
| 23 | 26 | ||
| 24 | /********************************************/
|
- | |
| - | 27 | public GraficoDadoDTO getDados() { |
|
| - | 28 | return dados; |
|
| - | 29 | }
|
|
| - | 30 | public void setDados(GraficoDadoDTO dados) { |
|
| - | 31 | this.dados = dados; |
|
| - | 32 | }
|
|
| 25 | 33 | ||
| - | 34 | public String getTitulo() { |
|
| - | 35 | return titulo; |
|
| - | 36 | }
|
|
| - | 37 | public void setTitulo(String titulo) { |
|
| - | 38 | this.titulo = titulo; |
|
| - | 39 | }
|
|
| - | 40 | ||
| - | 41 | /********************************************/
|
|
| 26 | 42 | ||
| 27 | 43 | ||
| 28 | }
|
44 | }
|