1 /*
2 * Created on 19/04/2006
3 */
4 package ecar.bean;
5
6 import java.util.List;
7
8 import ecar.pojo.EstruturaEtt;
9
10
11 /**
12 * Bean contendo as informações para controle de ordenacao de TipoFuncAcomp por Estruturas.<br>
13 *
14 * @author aleixo
15 */
16
17 public class OrdenacaoTpfaEstrutura {
18 private EstruturaEtt estrutura;
19 private List tipoFuncAcomp;
20
21 /**
22 * Retorna EstruturaEtt estrutura.<br>
23 *
24 * @author N/C
25 * @since N/C
26 * @version N/C
27 * @return EstruturaEtt
28 */
29 public EstruturaEtt getEstrutura() {
30 return estrutura;
31 }
32
33 /**
34 * Atribui valor especificado para EstruturaEtt estrutura.<br>
35 *
36 * @author N/C
37 * @since N/C
38 * @version N/C
39 * @param EstruturaEtt estrutura
40 */
41 public void setEstrutura(EstruturaEtt estrutura) {
42 this.estrutura = estrutura;
43 }
44
45 /**
46 * Retorna List tipoFuncAcomp.<br>
47 *
48 * @author N/C
49 * @since N/C
50 * @version N/C
51 * @return List
52 */
53 public List getTipoFuncAcomp() {
54 return tipoFuncAcomp;
55 }
56
57 /**
58 * Atribui valor especificado para List tipoFuncAcomp.<br>
59 *
60 * @author N/C
61 * @since N/C
62 * @version N/C
63 * @param List tipoFuncAcomp
64 */
65 public void setTipoFuncAcomp(List tipoFuncAcomp) {
66 this.tipoFuncAcomp = tipoFuncAcomp;
67 }
68
69 }