Subversion Repositories bacoAlunos

Rev

Rev 1814 | Rev 1841 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1357 jmachado 1
package pt.estgp.estgweb.domain;
1830 jmachado 2
// Generated 4/nov/2017 9:59:25 by Hibernate Tools 3.2.0.b9
1357 jmachado 3
 
4
 
1358 jmachado 5
import java.util.Date;
1357 jmachado 6
 
7
/**
8
 * Seccao generated by hbm2java
9
 */
1359 jmachado 10
public class Seccao extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
1357 jmachado 11
 
12
 
13
     private long id;
1358 jmachado 14
     private 5+0%2Fdocs%2Fapi+Date">Date saveDate;
1357 jmachado 15
     private 1.5.0/docs/api/java/lang/String.html">String titulo;
1360 jmachado 16
     private boolean estado;
1357 jmachado 17
     private Pagina pagina;
18
 
19
    public Seccao() {
20
    }
21
 
22
 
23
    public long getId() {
24
        return this.id;
25
    }
26
 
27
    public void setId(long id) {
28
        this.id = id;
29
    }
1358 jmachado 30
    public 5+0%2Fdocs%2Fapi+Date">Date getSaveDate() {
31
        return this.saveDate;
32
    }
33
 
34
    public void setSaveDate(5+0%2Fdocs%2Fapi+Date">Date saveDate) {
35
        this.saveDate = saveDate;
36
    }
1357 jmachado 37
    public 1.5.0/docs/api/java/lang/String.html">String getTitulo() {
38
        return this.titulo;
39
    }
40
 
41
    public void setTitulo(1.5.0/docs/api/java/lang/String.html">String titulo) {
42
        this.titulo = titulo;
43
    }
1360 jmachado 44
    public boolean isEstado() {
45
        return this.estado;
46
    }
47
 
48
    public void setEstado(boolean estado) {
49
        this.estado = estado;
50
    }
1357 jmachado 51
    public Pagina getPagina() {
52
        return this.pagina;
53
    }
54
 
55
    public void setPagina(Pagina pagina) {
56
        this.pagina = pagina;
57
    }
58
 
59
 
60
 
61
 
62
}
63
 
64