1 package ecar.bean;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6
7
8
9
10
11
12 public class OrdenacaoPorNivel {
13 private Integer nivel;
14 private List ordenacaoIett = new ArrayList();
15
16
17
18
19
20
21
22
23
24 public Integer getNivel() {
25 return nivel;
26 }
27
28
29
30
31
32
33
34
35
36 public void setNivel(Integer nivel) {
37 this.nivel = nivel;
38 }
39
40
41
42
43
44
45
46
47
48 public List getOrdenacaoIett() {
49 return ordenacaoIett;
50 }
51
52
53
54
55
56
57
58
59
60 public void setOrdenacaoIett(List ordenacaoIett) {
61 this.ordenacaoIett = ordenacaoIett;
62 }
63 }