View Javadoc

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   * @author cristiano
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  	 * Retorna AcompReferenciaAref aRef.<br>
25  	 * 
26  	 * @author N/C
27       * @since N/C
28       * @version N/C
29  	 * @return AcompReferenciaAref
30  	 */
31  	public AcompReferenciaAref getARef() {
32  		return aRef;
33  	}
34  
35  	/**
36  	 * Atribui valor especificado para AcompReferenciaAref ref
37  	 * 
38  	 * @author N/C
39       * @since N/C
40       * @version N/C
41  	 * @param AcompReferenciaAref ref
42  	 */
43  	public void setARef(AcompReferenciaAref ref) {
44  		aRef = ref;
45  	}
46  
47  	/**
48  	 * Retorna List cor
49  	 * 
50  	 * @author N/C
51       * @since N/C
52       * @version N/C
53  	 * @return List
54  	 */
55  	public List getCor() {
56  		return cor;
57  	}
58  
59  	/**
60  	 * Atribui valor especificado para List cor.<br>
61  	 * 
62  	 * @author N/C
63       * @since N/C
64       * @version N/C
65  	 * @param List cor
66  	 */
67  	public void setCor(List cor) {
68  		this.cor = cor;
69  	}
70  }