Subversion Repositories bacoAlunos

Rev

Rev 1358 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1357 jmachado 1
package pt.estgp.estgweb.domain;
2
// Generated 3/Mai/2016 15:14:08 by Hibernate Tools 3.2.0.b9
3
 
4
 
5
import java.util.ArrayList;
6
import java.util.List;
7
 
8
/**
9
 * Pagina generated by hbm2java
10
 */
11
public class Pagina  implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
12
 
13
 
14
     private long id;
15
     private 1.5.0/docs/api/java/lang/String.html">String nome;
16
     private List<Seccao> seccoes = new ArrayList<Seccao>(0);
17
 
18
    public Pagina() {
19
    }
20
 
21
 
22
    public long getId() {
23
        return this.id;
24
    }
25
 
26
    public void setId(long id) {
27
        this.id = id;
28
    }
29
    public 1.5.0/docs/api/java/lang/String.html">String getNome() {
30
        return this.nome;
31
    }
32
 
33
    public void setNome(1.5.0/docs/api/java/lang/String.html">String nome) {
34
        this.nome = nome;
35
    }
36
    public List<Seccao> getSeccoes() {
37
        return this.seccoes;
38
    }
39
 
40
    public void setSeccoes(List<Seccao> seccoes) {
41
        this.seccoes = seccoes;
42
    }
43
 
44
 
45
 
46
 
47
}
48
 
49