1
2
3
4 package ecar.pojo;
5
6 import org.apache.commons.lang.builder.EqualsBuilder;
7
8
9
10
11
12 public class SelecaoItemEstruturaTela {
13
14 private ItemEstruturaIett itemEstrutura;
15 private boolean exibirEmTela;
16 private int nivelItem;
17
18
19
20
21 public boolean isExibirEmTela() {
22 return exibirEmTela;
23 }
24
25
26
27
28 public void setExibirEmTela(boolean exibirEmTela) {
29 this.exibirEmTela = exibirEmTela;
30 }
31
32
33
34
35 public ItemEstruturaIett getItemEstrutura() {
36 return itemEstrutura;
37 }
38
39
40
41
42 public void setItemEstrutura(ItemEstruturaIett itemEstrutura) {
43 this.itemEstrutura = itemEstrutura;
44 }
45
46
47
48
49 public int getNivelItem() {
50 return nivelItem;
51 }
52
53
54
55
56 public void setNivelItem(int nivelItem) {
57 this.nivelItem = nivelItem;
58 }
59
60 public boolean equals(Object other) {
61 if ((this == other))
62 return true;
63 if (!(other instanceof SelecaoItemEstruturaTela))
64 return false;
65 SelecaoItemEstruturaTela castOther = (SelecaoItemEstruturaTela) other;
66 return new EqualsBuilder().append(this.getItemEstrutura(), castOther.getItemEstrutura()).isEquals();
67 }
68
69 }