1 package ecar.servlet.grafico.bean;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 import ecar.pojo.AcompReferenciaAref;
7
8
9
10
11
12
13
14 public class PosicaoBean {
15
16 private AcompReferenciaAref aRef = null;
17 private List cor = new ArrayList();
18
19 public PosicaoBean() {
20
21 }
22
23
24
25
26
27
28
29
30
31 public AcompReferenciaAref getARef() {
32 return aRef;
33 }
34
35
36
37
38
39
40
41
42
43 public void setARef(AcompReferenciaAref ref) {
44 aRef = ref;
45 }
46
47
48
49
50
51
52
53
54
55 public List getCor() {
56 return cor;
57 }
58
59
60
61
62
63
64
65
66
67 public void setCor(List cor) {
68 this.cor = cor;
69 }
70 }