1 package ecar.bean;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6
7 /**
8 * Bean contendo as informações para controle de ordenacao de Iett.<br>
9 *
10 * @author cristiano
11 */
12 public class OrdenacaoPorNivel {
13 private Integer nivel;
14 private List ordenacaoIett = new ArrayList();
15
16 /**
17 * Retorna Integer nivel.<br>
18 *
19 * @author N/C
20 * @since N/C
21 * @version N/C
22 * @return Integer
23 */
24 public Integer getNivel() {
25 return nivel;
26 }
27
28 /**
29 * Atribui valor especificado para Integer nivel.<br>
30 *
31 * @author N/C
32 * @since N/C
33 * @version N/C
34 * @param Integer nivel
35 */
36 public void setNivel(Integer nivel) {
37 this.nivel = nivel;
38 }
39
40 /**
41 * Retorna List ordenacaoIett.<br>
42 *
43 * @author N/C
44 * @since N/C
45 * @version N/C
46 * @return List
47 */
48 public List getOrdenacaoIett() {
49 return ordenacaoIett;
50 }
51
52 /**
53 * Atribui valor especificado para List ordenacaoIett.<br>
54 *
55 * @author N/C
56 * @since N/C
57 * @version N/C
58 * @param List ordenacaoIett
59 */
60 public void setOrdenacaoIett(List ordenacaoIett) {
61 this.ordenacaoIett = ordenacaoIett;
62 }
63 }